shell 中参数化各种自己写的函数,以便下次方便调用

//将my_grep脚本保存在/bin下,主要为了下次调用方便

1、 cat >/bin/my_grep 

//向里面输入内容,实现查询包含某字符串的文件

2   、dir=$1

      text=$2
      if test -z  $1
        then dir="."
      fi
      if test -z  $2
       then text="没有指定查找的内容!"
      fi
      find $dir -type f -print | xargs grep -l $text --color

//调用

3  my_grep '' '我是中国人'


4、显示结果


你可能感兴趣的:(Shell)