Salt 在 linux 系统下 基础操作 1.更改权限 # salt 2.更改用户 # salt '172.16.3.9' file.chown /root/test test test 3.复制文件 # salt '172.16.3.9' file.copy /root/test /root/ cmd 模块:实现远程的命令行调用执行(默认具有root权限) # salt '172.16.3.9' cmd.run 'free -m' cp模块:实现远程文件.目录的复制,以及下载URL文件等操
代码已经过测试 import re import mmap import os import shutil old_text='test' new_text='text' path=r'C:\Users\Administrator\Desktop\2.txt' cpattern = re.compile(str(old_text)) with open(path,mode='rb') as r_file: try: # mmap throws a ValueError if the file i