使用如下命令进行查找:
find . -name "*" | xargs grep -n --color "hello"
查找当前目录下所有文件,找出含有字符串 “hello” 的文件并显示行号。
在~/.bashrc
中添加如下函数:
function finds(){if [ -z $1 ];thenecho "Find condition is null."return 1ficondition=$1file="*"path="."if [ ! -z "$2" ];thenfile=$2fiif [ ! -z "$3" ];thenpath=$3fifind $path -name "$file" | xargs grep -n --color "$condition"
}
执行 source ~/.bashrc
生效。就能简化使用了:
finds "hello"
或者
finds "hello" "*" .
查找所有.c
中是否含有 “hello”:
finds "hello" "*.c" .
正则也是支持。
finds "\(hello\)" "*.c" .