找出当前目录下所有含"aop"字符的文件,去掉脚本自己的名字,注意使用sh执行这儿脚本,否则,用./1.sh调用,过滤的是./1.sh,而不是1.sh
[[email protected]_48_191_centos 456]# cat 1.sh
#!/bin/bash
for i in `ls`
do
m=`cat $i|grep aop`
if [ -n "$m" ]
then
echo "$i" >>/root/456/6.txt
fi
done
cat /root/456/6.txt | grep -v $0
也可以直接使用grep -l
[[email protected]_48_191_centos 456]# grep -l ‘aop‘ ./*
./1.sh
./1.txt
./3.txt
./4.txt
时间: 2024-10-13 22:58:29