设为首页
收藏本站
用户名
Email
自动登录
找回密码
密码
登录
注册
快捷导航
平台
Portal
论坛
BBS
文库
项目
群组
Group
我的博客
Space
搜索
搜索
热搜:
shell
linux
mysql
本版
用户
LinuxSir.cn,穿越时空的Linuxsir!
»
论坛
›
Linux 综合讨论区 —— LinuxSir.cn
›
shell进阶应用、shell编程
›
大家看看这个脚本错在哪
返回列表
查看:
865
|
回复:
4
大家看看这个脚本错在哪
[复制链接]
777
777
当前离线
积分
990
IP卡
狗仔卡
发表于 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: 没有那个文件或目录
回复
使用道具
举报
提升卡
置顶卡
沉默卡
喧嚣卡
变色卡
显身卡
KornLee
KornLee
当前离线
积分
6960
IP卡
狗仔卡
发表于 2003-6-27 22:58:06
|
显示全部楼层
1,简单问题你给做复杂啦!
2,while那段的处理,可以用for结构来历遍,而while适合对一个文件的读取(大多数的情况)并处理!
3,|符号的应用,|符号我认为不适合用于输入标量的处理!
4,用
grep -R "keyword" *
是不是可以解决你的问题呢?
回复
支持
反对
使用道具
举报
显身卡
777
777
当前离线
积分
990
IP卡
狗仔卡
楼主
|
发表于 2003-6-28 00:06:54
|
显示全部楼层
不行啊!
请你写一下给我看看.我是莱鸟啊!就学了这么多.
回复
支持
反对
使用道具
举报
显身卡
KornLee
KornLee
当前离线
积分
6960
IP卡
狗仔卡
发表于 2003-6-28 00:15:40
|
显示全部楼层
我想你是要把当前目录下所有含有"keyword'字符串的文件找出来吧~~
用这个试试看;)
grep -Rl "string" *
解释:
R:做递归处理
l:只显示含有string的文件名
*:代表当前所有文件及子目录
回复
支持
反对
使用道具
举报
显身卡
777
777
当前离线
积分
990
IP卡
狗仔卡
楼主
|
发表于 2003-6-28 00:54:47
|
显示全部楼层
ok
grep -R keyword directory
thanks very much!
回复
支持
反对
使用道具
举报
显身卡
返回列表
高级模式
B
Color
Image
Link
Quote
Code
Smilies
您需要登录后才可以回帖
登录
|
注册
本版积分规则
发表回复
回帖后跳转到最后一页
Copyright © 2002-2023
LinuxSir.cn
(http://www.linuxsir.cn/) 版权所有 All Rights Reserved.
Powered by
RedflagLinux!
技术支持:
中科红旗
|
京ICP备19024520号
快速回复
返回顶部
返回列表