当 stdout 没有输出时如何杀死 plink.exe?
How to kill plink.exe when there's no output from stdout?
Plink.exe 进程完成后不会关闭。当试图通过检查 output == ' ': break 来打破 while 循环时,代码卡住了,但仍然没有运气。我能够打印实时输出,但在完成时无法中断循环。
#Establish ssh connection to a server
def _establish_connection(self):
connection='plink -ssh {}@{} -pw {}'.format(self.user,self.server,self.pw)
self.sp = Popen(connection,stdin=PIPE,stdout=PIPE)
#Trying to read live output from stdout and write to file
def _test_create_log(self,_system,_logdir):
self._establish_connection()
self.sp.stdin.write(_command)
timestr = time.strftime("%Y%m%d-%H%M%S")
dir_to_log = os.path.join(_logdir,_system + '_' + timestr + '.txt')
with open(dir_to_log,'w+') as myLog:
while True:
output = self.sp.stdout.readline()
output.decode('ASCII')
if output != '':
myLog.write(output)
print(output.strip())
else: #Code does not reach here, plink not killed.
self.sp.kill()
break
Shell 是一个有输入和输出的黑盒子。无法检测某个特定命令的输出是否已结束。您所能做的就是在输出的末尾添加一些神奇的字符串并寻找它。无论如何,这不是正确的解决方案。
如果您希望 Plink 使用命令关闭,请在 Plink 命令行上提供命令,例如:
connection='plink -ssh {}@{} -pw {} {}'.format(self.user,self.server,self.pw,_command)
虽然更好的方法是在 Python 中使用本机 SSH 库,例如 Paramiko,而不是驱动外部控制台应用程序。
见python paramiko run command。
Plink.exe 进程完成后不会关闭。当试图通过检查 output == ' ': break 来打破 while 循环时,代码卡住了,但仍然没有运气。我能够打印实时输出,但在完成时无法中断循环。
#Establish ssh connection to a server
def _establish_connection(self):
connection='plink -ssh {}@{} -pw {}'.format(self.user,self.server,self.pw)
self.sp = Popen(connection,stdin=PIPE,stdout=PIPE)
#Trying to read live output from stdout and write to file
def _test_create_log(self,_system,_logdir):
self._establish_connection()
self.sp.stdin.write(_command)
timestr = time.strftime("%Y%m%d-%H%M%S")
dir_to_log = os.path.join(_logdir,_system + '_' + timestr + '.txt')
with open(dir_to_log,'w+') as myLog:
while True:
output = self.sp.stdout.readline()
output.decode('ASCII')
if output != '':
myLog.write(output)
print(output.strip())
else: #Code does not reach here, plink not killed.
self.sp.kill()
break
Shell 是一个有输入和输出的黑盒子。无法检测某个特定命令的输出是否已结束。您所能做的就是在输出的末尾添加一些神奇的字符串并寻找它。无论如何,这不是正确的解决方案。
如果您希望 Plink 使用命令关闭,请在 Plink 命令行上提供命令,例如:
connection='plink -ssh {}@{} -pw {} {}'.format(self.user,self.server,self.pw,_command)
虽然更好的方法是在 Python 中使用本机 SSH 库,例如 Paramiko,而不是驱动外部控制台应用程序。
见python paramiko run command。