WinSCP命令在服务器上执行命令
WinSCP command to execute command on the server
我只是想在不打开 WinSCP 的情况下通过脚本自动进行文件传输。
除了PuTTY session,我在某种程度上执行了文件传输操作。
我准备了一个 sftprun.cmd
批处理文件,例如:
D:\winscp\winscp.com /script=D:\winscp_auto\sftpscriptJAC.txt
能否建议我通过上述脚本打开PuTTY在服务器上执行命令?
mount -o remount,rw /
应该在脚本文件“sftpscriptJAC
”下提供 putty 详细信息。
WinSCP 可以通过脚本自行执行远程命令(有一些限制),使用 call
command:
open sftp://user@example.com/
put C:\file.txt
call mount -o remount,rw /
我只是想在不打开 WinSCP 的情况下通过脚本自动进行文件传输。
除了PuTTY session,我在某种程度上执行了文件传输操作。
我准备了一个 sftprun.cmd
批处理文件,例如:
D:\winscp\winscp.com /script=D:\winscp_auto\sftpscriptJAC.txt
能否建议我通过上述脚本打开PuTTY在服务器上执行命令?
mount -o remount,rw /
应该在脚本文件“sftpscriptJAC
”下提供 putty 详细信息。
WinSCP 可以通过脚本自行执行远程命令(有一些限制),使用 call
command:
open sftp://user@example.com/
put C:\file.txt
call mount -o remount,rw /