LinuxSir.cn,穿越时空的Linuxsir!

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

大家看看这个脚本错在哪

[复制链接]
发表于 2003-6-27 22:25:25 | 显示全部楼层 |阅读模式
cat a
#!/bin/bash
echo "keyword:"
read keyword
echo "directory:"
read directory
dir -R $directory | (while read file;
do
grep " $keyword " $file
done
)
--------------------------------------------------code done
out:./a
out:

keyword:
yes
directory:
/etc/sysconfig
grep: /etc/sysconfig:: 没有那个文件或目录
grep: apmd: 没有那个文件或目录
grep: gpm: 没有那个文件或目录
grep: iptables: 没有那个文件或目录
grep: network-scripts: 没有那个文件或目录
grep: sendmail: 没有那个文件或目录
grep: apm-scripts: 没有那个文件或目录
grep: grub: 没有那个文件或目录
grep: irda: 没有那个文件或目录
grep: ntpd: 没有那个文件或目录
grep: static-routes: 没有那个文件或目录
grep: authconfig: 没有那个文件或目录
grep: harddisks: 没有那个文件或目录
grep: keyboard: 没有那个文件或目录
grep: pcmcia: 没有那个文件或目录
grep: syslog: 没有那个文件或目录
grep: clock: 没有那个文件或目录
grep: hwconf: 没有那个文件或目录
grep: kudzu: 没有那个文件或目录
grep: rawdevices: 没有那个文件或目录
grep: xinetd: 没有那个文件或目录
grep: console: 没有那个文件或目录
grep: i18n: 没有那个文件或目录
grep: mouse: 没有那个文件或目录
grep: redhat-config-users: 没有那个文件或目录
grep: desktop: 没有那个文件或目录
grep: init: 没有那个文件或目录
grep: network: 没有那个文件或目录
grep: redhat-logviewer: 没有那个文件或目录
grep: firstboot: 没有那个文件或目录
grep: installinfo: 没有那个文件或目录
grep: networking: 没有那个文件或目录
grep: rhn: 没有那个文件或目录
发表于 2003-6-27 22:58:06 | 显示全部楼层
1,简单问题你给做复杂啦!
2,while那段的处理,可以用for结构来历遍,而while适合对一个文件的读取(大多数的情况)并处理!
3,|符号的应用,|符号我认为不适合用于输入标量的处理!
4,用
grep -R "keyword" *
是不是可以解决你的问题呢?
 楼主| 发表于 2003-6-28 00:06:54 | 显示全部楼层
不行啊!

请你写一下给我看看.我是莱鸟啊!就学了这么多.
发表于 2003-6-28 00:15:40 | 显示全部楼层
我想你是要把当前目录下所有含有"keyword'字符串的文件找出来吧~~
用这个试试看;)
grep -Rl "string" *
解释:
R:做递归处理
l:只显示含有string的文件名
*:代表当前所有文件及子目录
 楼主| 发表于 2003-6-28 00:54:47 | 显示全部楼层
ok

grep -R keyword directory

thanks very much!
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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