linux查找指定文件字符串,[shell]Linux在指定目录上查找包含指定字符串的文件

[shell]Linux在指定目录下查找包含指定字符串的文件

#!/bin/bash

echo -e "\nThis is a program to find the file in special directory

which include keyword!\n\n"

if [ "$1" == "" ]; then

echo -e

"Please input the keyword behind the $0\.\n\n"

exit 0

fi

keyword=$1

dir=.

if [ "$2" != "" ]; then

dir=$2

fi

test ! -d $dir && echo -e "The $dir

is not exist in your system\.\n\n"

&& exit 0

count=0

filelist=`ls -R $dir 2> /dev/null | grep -v

'^$'`

for filename in $filelist

do

temp=`echo

$filename | sed 's/:.*$//g'`

if [

"$filename" != "$temp" ]; then

curdir=$temp

#echo "current dir = $curdir"

else

filetype=`file $curdir/$filename | grep

"text"`

if [ "$filetype" != "" ]; then

temp=`grep $keyword $curdir/$filename

2> /dev/null`

#echo $curdir/$filename

if [ "$temp" != "" ]; then

echo $curdir/$filename

count=$(($count+1))

fi

fi

fi

done

echo -e "\n\nTotal: $count"

echo -e "Done"

文件保存为myfind.sh

执行:chmod u+x myfind.sh

例如:

myfind.sh cs /home/zk

在/home/zk目录下查找包含cs的字符

1 楼

flw521521

2011-12-12

myfind.sh cs /home/zk

在/home/zk目录下查找包含cs的字符

grep -R "cs" /home/zk

可以达到同样的目的,不是吗

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值