常用Linux命令

1、16进制查看   xxd  file    (效果类似UltraEdit)

2、查找文件  find dir -name "*.c"

3、在多个文件中找某个字符串

--递归查找目录下含有该字符串的所有文件
grep -rn "data_chushou_pay_info"  /home/hadoop/nisj/automationDemand/
 
--查找当前目录下后缀名过滤的文件
grep -Rn "data_chushou_pay_info" *.py
 
--当前目录及设定子目录下的符合条件的文件
grep -Rn "data_chushou_pay_info" /home/hadoop/nisj/automationDemand/ *.py
 
--结合find命令过滤目录及文件名后缀
find /home/hadoop/nisj/automationDemand/ -type f -name '*.py'|xargs grep -n 'data_chushou_pay_info'

 

常用Linux命令常用Linux命令 ggaofeng 发布了113 篇原创文章 · 获赞 23 · 访问量 13万+ 私信 关注
上一篇:策略模式


下一篇:python 24 封装、多态