Linux全文查找、替换和删除
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
查找:
在当前目录下的.jsp文件中查找“alert”字符串
grep "alert" *.jsp
在当前目录及其多个子目录中查找文件portal.jsp
find . -name "portal.jsp" -print
在当前目录及其多个子目录下的.jsp文件中查找字符串"alert"
find . -name "*.jsp" -print | xargs grep "alert"
替换:
在当前目录下的.jsp文件中把字符串"password"替换成"pwd"
perl -pi -e 's/password/pwd/g' *.jsp
在当前目录下的.jsp文件中把字符串"password"替换成"pwd"并以.bak扩展名备份
perl -pi.bak -e 's/password/pwd/g' *.jsp
在当前目录及子目录下的.jsp文件中替换字符串"password"为"pwd"
find . -name "*.jsp" -print | xargs perl -pi -e 's/password/pwd/g'
删除:
在当前目录及其多个子目录中查找.jsp文件并删除之
find . -name "*.jsp" -exec rm {} \;
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献1条内容
所有评论(0)