查找:

 在当前目录下的.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 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐