首页 > 代码库 > 通过文件内容,输出符合条件的文件名

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

找出当前目录下所有含"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” 博客,请务必保留此出处http://9237101.blog.51cto.com/9227101/1929685

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