LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 678|回复: 7

请问怎么做?

[复制链接]
发表于 2003-6-9 18:26:21 | 显示全部楼层 |阅读模式
编写一个shell程序,它能够将指定目录及其子目录中包含字符串root的文本文件找出
 楼主| 发表于 2003-6-9 18:35:51 | 显示全部楼层
我不会编程,也是帮朋友问的,希望大家能帮帮忙~~~
发表于 2003-6-9 18:43:55 | 显示全部楼层
grep -R root *
 楼主| 发表于 2003-6-9 18:51:15 | 显示全部楼层
具体是
呵呵,我想要完整的源码~~
发表于 2003-6-9 19:11:02 | 显示全部楼层
我认为那一句应该可以满足你的要求,如需要写成文件的形式,请参考下面的道理一样的)
  1. #!/bin/bash
  2. #filename:a
  3. (($# !=2)) && { echo "it need two argment";exit 1; }
  4. grep -R $1 $2 2>/dev/null|awk -F: '{print $1}'
复制代码
$a root ~  //root是要找的指定字符串,~是路径,也可以是/xxx/xxx
发表于 2003-6-9 21:16:19 | 显示全部楼层

斑竹不用这么夸张吧

grep 有个参数可以只打印文件名的:
-l, --files-with-matches  only print FILE names containing matches

不好意思,再者,grep 好象只有 -r 参数,没有 -R 参数呀,我的是 GNU grep 2.4.2,不知 javalee 的什么版本。
发表于 2003-6-9 21:19:51 | 显示全部楼层
所以,这样就可以了

#!/bin/bash
(($# < 2)) && { echo "Need two argment at least"; exit 1 }
grep -rl $* 2
发表于 2003-6-9 23:48:26 | 显示全部楼层
redhat8.0
grep (GNU grep) 2.5.1

Regexp selection and interpretation:
  -E, --extended-regexp     PATTERN is an extended regular expression
  -F, --fixed-strings       PATTERN is a set of newline-separated strings
  -G, --basic-regexp        PATTERN is a basic regular expression
  -P, --perl-regexp         PATTERN is a Perl regular expression
  -e, --regexp=PATTERN      use PATTERN as a regular expression
  -f, --file=FILE           obtain PATTERN from FILE
  -i, --ignore-case         ignore case distinctions
  -w, --word-regexp         force PATTERN to match only whole words
  -x, --line-regexp         force PATTERN to match only whole lines
  -z, --null-data           a data line ends in 0 byte, not newline

Miscellaneous:
  -s, --no-messages         suppress error messages
  -v, --invert-match        select non-matching lines
  -V, --version             print version information and exit
      --help                display this help and exit
      --mmap                use memory-mapped input if possible

Output control:
  -m, --max-count=NUM       stop after NUM matches
  -b, --byte-offset         print the byte offset with output lines
  -n, --line-number         print line number with output lines
      --line-buffered       flush output on every line
  -H, --with-filename       print the filename for each match
  -h, --no-filename         suppress the prefixing filename on output
      --label=LABEL         print LABEL as filename for standard input
  -o, --only-matching       show only the part of a line matching PATTERN
  -q, --quiet, --silent     suppress all normal output
      --binary-files=TYPE   assume that binary files are TYPE
                            TYPE is 'binary', 'text', or 'without-match'
  -a, --text                equivalent to --binary-files=text
  -I                        equivalent to --binary-files=without-match
  -d, --directories=ACTION  how to handle directories
                            ACTION is 'read', 'recurse', or 'skip'
  -D, --devices=ACTION      how to handle devices, FIFOs and sockets
                            ACTION is 'read' or 'skip'
  -R, -r, --recursive       equivalent to --directories=recurse
      --include=PATTERN     files that match PATTERN will be examined
      --exclude=PATTERN     files that match PATTERN will be skipped.
      --exclude-from=FILE   files that match PATTERN in FILE will be skipped.
  -L, --files-without-match only print FILE names containing no match
  -l, --files-with-matches  only print FILE names containing matches
  -c, --count               only print a count of matching lines per FILE
  -Z, --null                print 0 byte after FILE name

Context control:
  -B, --before-context=NUM  print NUM lines of leading context
  -A, --after-context=NUM   print NUM lines of trailing context
  -C, --context=NUM         print NUM lines of output context
  -NUM                      same as --context=NUM
      --color[=WHEN],
      --colour[=WHEN]       use markers to distinguish the matching string
                            WHEN may be `always', `never' or `auto'.
  -U, --binary              do not strip CR characters at EOL (MSDOS)
  -u, --unix-byte-offsets   report offsets as if CRs were not there (MSDOS)

`egrep' means `grep -E'.  `fgrep' means `grep -F'.
With no FILE, or when FILE is -, read standard input.  If less than
two FILEs given, assume -h.  Exit status is 0 if match, 1 if no match,
and 2 if trouble.
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表