in reply to Re^2: Command Executing problem in perl.
in thread Command Executing problem in perl.
"It should create the file in the remote machine, not in local machine"
I'm pretty sure your local shell (the thing executing those strings) doesn't work like that
For example this creates the /local/allways on local machine
$ echo > /local/allways
Compare that with this, which only prints stuff to terminal, it creates no files
$ echo "echo > /local/allways"
See Behind the GUI lives the Shell and How Command Line Parameters Are Parsed
|
|---|