通过文件内容,输出符合条件的文件名

找出当前目录下所有含"aop"字符的文件,去掉脚本自己的名字,注意使用sh执行这儿脚本,否则,用./1.sh调用,过滤的是./1.sh,而不是1.sh

[root@VM_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

[root@VM_48_191_centos 456]# grep -l 'aop' ./*

./1.sh

./1.txt

./3.txt

./4.txt

本文转自飞奔的小GUI博客51CTO博客,原文链接http://blog.51cto.com/9237101/1929685如需转载请自行联系原作者

ziwenzhou
上一篇:本地MariaDB数据库外网访问


下一篇:linux查看是否开启超线程