我试图通过Python脚本中的ssh运行一组命令。我发现了here-document
概念并想到:很酷,让我实现这样的事情:
command = ( ( 'ssh user@host /usr/bin/bash <<EOF\n'
+ 'cd %s \n'
+ 'qsub %s\n'
+ 'EOF' ) % (test_dir, jobfile) )
try:
p = subprocess.Popen( command.split(), stdout=subprocess.PIPE, stderr=subprocess.STDOUT )
except :
print ('from subprocess.Popen( %s )' % command.split() )
raise Exception
#endtry
不幸的是,这就是我得到的:
bash: warning: here-document at line 0 delimited by end-of-file (wanted `EOF')
我不确定如何编写文件结束语句(我猜测换行符会妨碍这里?)
我在网站上搜索了一下,但似乎没有这种类型的Python示例......
答案 0 :(得分:1)
这是一个最小的工作示例,关键是在<< EOF
之后不应拆分剩余的字符串。请注意,command.split()
仅被调用一次。
import subprocess
# My bash is at /user/local/bin/bash, your mileage may vary.
command = 'ssh user@host /usr/local/bin/bash'
heredoc = ('<< EOF \n'
'cd Downloads \n'
'touch test.txt \n'
'EOF')
command = command.split()
command.append(heredoc)
print command
try:
p = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
except Exception as e:
print e
通过检查创建的文件test.txt
是否显示在您ssh:ed into的主机上的Downloads目录中来验证。
亲切的问候,
菲利普