I have a script like this?
command='scp xxx 192.168.1.23:/tmp'
su - nobody -c "$command"
The main shell didn't print any info. How can I get output from the sub command?
|
|
|
You can get all of its output by just redirecting the corresponding output channel:
or
But if you don't see anything, maybe the diagnostics output of scp is disabled? Is there a "-q" option somewhere in your real command? |
|||
|
|
|
You aren't actually running the scp. When you use the
syntax, the |
|||||
|