命令:sed -i "s#https#http#g" `grep http -rl VEROMODA`
功能:用来替换当前目录VEROMODA文件夹及子文件夹中所有文件中的https为http.
说明:
-i 表示inplace edit,就地修改文件
-r 表示搜索子目录
-l 表示输出匹配的文件名
原文地址:https://www.cnblogs.com/lxxhome/p/8393650.html
时间: 2024-10-13 20:49:05
命令:sed -i "s#https#http#g" `grep http -rl VEROMODA`
功能:用来替换当前目录VEROMODA文件夹及子文件夹中所有文件中的https为http.
说明:
-i 表示inplace edit,就地修改文件
-r 表示搜索子目录
-l 表示输出匹配的文件名
原文地址:https://www.cnblogs.com/lxxhome/p/8393650.html