Thank you! I'll take a look at PuTTY.
- Jerrys
Before posting, please read how to report bug or request support effectively.
Bug reports without an attached log file are usually useless.
plink
from PuTTY package instead. It allows you to execute a shell command on remote machine. This way you can use formatting capabilities of unix ls
command (e.g. to display names only)
plink <user>:<host> -pw <password> ls > file.txt
winscp.com <root>:<password>@<ipaddress> /script=dolist.txt > file.txt
winscp.com
in your search path ... it's easier that way)
ls
commands into one file (file.txt
)
ls
command to list the files in a remote directory is easy enough. But what I would like to do it to redirect the output of this command to a disk file in the local directory (Windows). In essence, I am just trying to get a list of the files in the remote directory to use for other purposes.