python批量修改xshell保存的密码

python批量修改xshell保存的密码

下面的脚本会在标签目录下生成out文件夹,将新标签保存进去。

import os
curr_pwd= "Password=*****==" #找到xsh保存的路径下打开现有的文件查看密码
update_pwd = "Password=******==\n"
path = input('请输入xsh文件路径:')  #输入xsh保存的路径

for root, dirs, files in os.walk(path):
    for f1 in files:
        if '.xsh' in f1:   #判断为xsh文件
            with open(path +'\\'+ f1,encoding='utf-16') as f:  #xsh文件编码为utf16
                if not os.path.exists(path+'\\out'):  # 是否存在out文件夹
                    os.makedirs(path+'\\out')  # 如果没有则创建
                fw = open(path+'\\out' +'\\'+ f1, 'w',encoding='utf-16')
                for line in f.readlines():   #遍历文件中每一行
                    print(line)
                    if curr_pwd in line:
                        print(curr_pwd)
                        fw.write(update_pwd)
                    else:
                        fw.write(line)
print('修改完成')
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值