ssh: redirect the output.

2009-01-27 Thread garp28
I'm writing a shell script in which I have to execute the a script (stop_sri.sh) remotely using the ssh command: ssh -T ${SRI} EOF su - simrun -c /tmp/stop_sri.sh EOF I would like to redirect the output of the stop_sri.sh into a local log. How can I do that? -- View this message in context:

Re: ssh: redirect the output.

2009-01-27 Thread Bob Proulx
garp28 wrote: ssh -T ${SRI} EOF su - simrun -c /tmp/stop_sri.sh EOF I would like to redirect the output of the stop_sri.sh into a local log. How can I do that? Use '' to redirect the outout. For example: ssh -T ${SRI} stop_sri.log EOF su - simrun -c /tmp/stop_sri.sh EOF Bob