通过ssh远程登陆一台没有PYthon的服务器上,用subprocess执行指定文件夹/home/command/的ASK命令,然后把输出内容保存到CSV。请问怎么写这个脚本?
时间: 2023-04-07 22:03:01 浏览: 110
可以使用以下脚本来实现:
```
import subprocess
import csv
# 远程服务器的IP地址和用户名
remote_server = 'remote_server_ip'
remote_user = 'remote_username'
# 远程服务器上ASK命令所在的文件夹路径
remote_folder = '/home/command/'
# 本地保存CSV文件的路径和文件名
csv_file = 'output.csv'
# 使用ssh连接远程服务器,并执行ASK命令
ssh = subprocess.Popen(['ssh', remote_user + '@' + remote_server, 'cd ' + remote_folder + ' && ASK'],
stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
# 读取ASK命令的输出内容
output, error = ssh.communicate()
# 将输出内容写入CSV文件
with open(csv_file, 'w', newline='') as f:
writer = csv.writer(f)
for line in output.decode().split('\n'):
writer.writerow([line])
```
需要注意的是,执行脚本时需要先安装好Python和paramiko库。
阅读全文