linux下基于指定目录及子目录下所有文件中指定字符串进行替换
2023-12-28 13:14:50
-
使用sed命令进行替换:
sed -i 's/old_string/new_string/g' /path/to/directory/*
-
使用find命令结合sed进行替换:
find /path/to/directory -type f -exec sed -i 's/old_string/new_string/g' {} +
-
使用grep命令找到包含指定字符串的文件,再使用sed进行替换:
grep -rl 'old_string' /path/to/directory | xargs sed -i 's/old_string/new_string/g'
-
使用awk命令进行替换:
awk '{gsub(/old_string/, "new_string"); print > FILENAME}' /path/to/directory/*
-
使用perl命令进行替换:
perl -pi -e 's/old_string/new_string/g' /path/to/directory/*
-
使用Python脚本进行替换:
import os def replace_string(path, old_string, new_string): for root, dirs, files in os.walk(path): for file in files: file_path = os.path.join(root, file) with open(file_path, 'r') as f: content = f.read() content = content.replace(old_string, new_string) with open(file_path, 'w') as f: f.write(content) replace_string('/path/to/directory', 'old_string', 'new_string')
文章来源:https://blog.csdn.net/zrc_xiaoguo/article/details/135264586
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!