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