#!bin/sh
# first.sh
# This file looks through all the files in the current directory for the string POSIX,
# and then dispaly those files to the stand output
for file in *
do
if grep -o POSIX $file
then
more $file
fi
done
exit 0
还有其他方法:利用find 和 grep
查找 包含alias字符串的*.conf的文件
find / -name "*.conf" | xargs grep "alias"
1. grep -R -l 一些也可以实现,但是通过管道 | 比单纯用grep 复杂的参数更有效率。
2. xargs是用来展开find获得的结果,使其作为grep的参数。
阅读(839) | 评论(0) | 转发(0) |