Linux 查找某个目录下所有文件中是否含有某些字符串

使用如下命令进行查找:

find . -name "*" | xargs grep -n --color "hello"

查找当前目录下所有文件,找出含有字符串 “hello” 的文件并显示行号。

~/.bashrc 中添加如下函数:

function finds(){
    if [ -z $1 ];then
        echo "Find condition is null."
        return 1
    fi
    condition=$1
    file="*"
    path="."
    if [ ! -z "$2" ];then
        file=$2
    fi
    if [ ! -z "$3" ];then
        path=$3
    fi
    find $path -name "$file" | xargs grep -n --color "$condition"
}

执行 source ~/.bashrc 生效。就能简化使用了:

finds "hello"

或者

finds "hello" "*" .

查找所有.c中是否含有 “hello”:

finds "hello" "*.c" .

正则也是支持。

finds "\(hello\)" "*.c" .

你可能感兴趣的:(Linux系统,linux)