我需要从 Windows 机器连接到远程 Linux 服务器并执行 Perl 脚本。我试过使用
command = "perl /usr/local/xfer/file.pl -ssh root@"+hostname+" -pw password -batch"
pid = subprocess.Popen(command, shell=True)
但它告诉我Can't open perl script "usr/local/xfer/file.pl'": No such file or directory.
我在这里做错了什么,我怎样才能让它工作?