码迷,mamicode.com
首页 > 其他好文 > 详细

递归的grep

时间:2015-09-29 19:00:43      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:linu   shell grep



#!/bin/bash

file=$(find ‘你要找的起始位置’ -type f )

for num in $file

do

if [  -f  $num ];

then

    grep   ‘你要查找的字符‘ $num && echo $num 

fi

done


递归的grep

标签:linu   shell grep

原文地址:http://gogoing.blog.51cto.com/9763598/1699259

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!