ack学习
用法: ack [OPTION]... PATTERN [FILES OR DIRECTORIES] 选项:
- -i ignore case 忽略大小写
- -v invert-match 选择反转 选择不符合要求的部分
- -l files-with-matches 只打印符合要求的文件名
- -L files-with-not-matches 只打印不符合要求的文件名
- --python --php --perl表示选择该类型的文件
实例
- 查找python类型的文件且包含hello字符串 ack --python hello
- 排除python类型的文件 ack --nopython pattern