由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Unix版 - 一个高技术问题
相关主题
如何把一个目录下的文件名全部改成小写?sed? awk? or mak a program?
[转载] How to list the files with specific permission?how to grep a string in all sub-dirs?
shell programming problemshow to escape both ' and " from tcsh?
How do i get a list of all computers?where is the pre-build version of cxterm-solaris
replace a string in all files under a directory?Where's emacs' private dictionary?
How to find a file in the deep children directory?UNIX Tip: the bad and the good
Re: 如何用grep查找子目录下的文件?--stop!如何删除一组文件或给一组文件更名?
Re: 如何用grep查找子目录下的文件?regular expression中回车用什么表示?
相关话题的讨论汇总
话题: atoi话题: grep话题: 文件话题: cpp话题: 高技术
进入Unix版参与讨论
1 (共1页)
m****f
发帖数: 32
1
我的CPP目录下面的文件名都只是代号而已,并不与文件内容挂钩。
这么说吧,我的文件目录清单如下:
a.cpp
b.cpp
c.cpp
d.cpp
e.cpp
f.cpp
g.cpp
h.cpp
... ...
z.cpp
我想知道哪些文件里面有“atoi”这样的字串。应该用什么命令呢?
我试了一下 cat * | grep "atoi", 但它只是给我看所有含有atoi字
串的行,并不告诉我各行都来自哪个文件。
先谢了。
bz
发帖数: 1770
2
use
grep "atoi" *
instead of
cat *|grep "atoi"

【在 m****f 的大作中提到】
: 我的CPP目录下面的文件名都只是代号而已,并不与文件内容挂钩。
: 这么说吧,我的文件目录清单如下:
: a.cpp
: b.cpp
: c.cpp
: d.cpp
: e.cpp
: f.cpp
: g.cpp
: h.cpp

v*****s
发帖数: 10
3
grep -H atoi *
grep -l atoi *

【在 m****f 的大作中提到】
: 我的CPP目录下面的文件名都只是代号而已,并不与文件内容挂钩。
: 这么说吧,我的文件目录清单如下:
: a.cpp
: b.cpp
: c.cpp
: d.cpp
: e.cpp
: f.cpp
: g.cpp
: h.cpp

t******q
发帖数: 117
4
grep -n "xxx" *.cpp

【在 v*****s 的大作中提到】
: grep -H atoi *
: grep -l atoi *

1 (共1页)
进入Unix版参与讨论
相关主题
regular expression中回车用什么表示?replace a string in all files under a directory?
想写个小东东How to find a file in the deep children directory?
Help on shell scriptRe: 如何用grep查找子目录下的文件?--stop!
coconut,关于directory grep的问题Re: 如何用grep查找子目录下的文件?
如何把一个目录下的文件名全部改成小写?sed? awk? or mak a program?
[转载] How to list the files with specific permission?how to grep a string in all sub-dirs?
shell programming problemshow to escape both ' and " from tcsh?
How do i get a list of all computers?where is the pre-build version of cxterm-solaris
相关话题的讨论汇总
话题: atoi话题: grep话题: 文件话题: cpp话题: 高技术