实验4 传递指定文件参数修改

sys.argv

一个列表,其中包含了被传递给 Python 脚本的命令行参数。 argv[0] 为脚本的名称(是否是完整的路径名取决于操作系统)。如果是通过 Python 解释器的命令行参数 -c 来执行的, argv[0] 会被设置成字符串 '-c' 。如果没有脚本名被传递给 Python 解释器, argv[0] 为空字符串。

为了遍历标准输入,或者通过命令行传递的文件列表,参照 fileinput 模块

import paramiko
import time
import getpass
import sys
username = input("Username: ")
password = getpass.getpass("Password: ")
ip_file = sys.argv[1]
cmd_file = sys.argv[2]
iplist = open(ip_file,'r')
for line in iplist.readlines():
    ip = line.strip()
    ssh_client = paramiko.SSHClient()
    ssh_client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
    ssh_client.connect(hostname=ip, username=username, password=password, look_for_keys=False)
    print('=-=-=-=-=-=-=-=-=-=-=-=-=-=')
    print('已经成功登陆交换机 ' + ip)
    command = ssh_client.invoke_shell()
    cmdlist = open(cmd_file, 'r')
    cmdlist.seek(0)
    for line in cmdlist.readlines():
        each_command = line.strip()
        command.send(each_command + '\n')
        time.sleep(5)
    cmdlist.close()
    output = command.recv(65535).decode('ASCII')
    print(output)
    ssh_client.close()
E:\log\python\pythonProject\testdemo>dir
 驱动器 E 中的卷是 文件
 卷的序列号是 FE2A-789B

 E:\log\python\pythonProject\testdemo 的目录

2022/05/31  11:34    <DIR>          .
2022/05/31  11:34    <DIR>          ..
2022/05/31  11:34             1,416 Demo05.py
2022/05/31  11:06                11 g1_comm.txt
2022/05/31  11:06                13 g1_ip.txt
2022/05/31  11:06                11 g2_comm.txt
2022/05/31  11:06                28 g2_ip.txt
2022/05/31  11:20               908 TestDemo04.py
               6 个文件          2,387 字节
               2 个目录 124,421,648,384 可用字节

E:\log\python\pythonProject\testdemo> python TestDemo01.py g1_ip.txt g1_comm.txt
Username: python
Password:
=-=-=-=-=-=-=-=-=-=-=-=-=-=
已经成功登陆交换机 192.168.8.201

Info: The max number of VTY users is 5, and the number
      of current VTY users on line is 1.
      The current login time is 2022-05-31 11:21:03.
<Huawei>sys
Enter system view, return user view with Ctrl+Z.
[Huawei]dis cu
#
sysname Huawei
#
cluster enable
……
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

期待未来的男孩

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值