Re: Returning the prompt
Martin, is there any way I can forward a command to the remote server such that WinSCP does not hang while the command is executed? Particularly, I would like to run the command "nohup ./file.bin &".
You can workaround syntactical problem with
&
by invoking the command from child shell, like:
/bin/sh -c "nohup ./file.bin &"