由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 问一个shell脚本的题目
相关主题
请教一个弱弱问题,关于#include的pathname请问哪些大学可以从safaribooksonline.com下载pdf文件?
should the .dll and .lib have the same name?急问一个Linux shell问题
a PERL opendir/readdir question[合集] 到底要学习Perl,还是Python?
Need a regular expression for password[合集] Re: 碰上这样的程序员,无语
哪位高人给个Kdevelop的小例子 (转载)[合集] 哪位老大指点一下linux脚本
小白问题:COM/ATL的CoCreateInstance怎么定位dll的?Log file for VB application ?
问一个有关ios的技术问题怪事
操作建议:把CNN和Liar联系在一起 (转载)vi编辑大文件
相关话题的讨论汇总
话题: sed话题: tom话题: directory话题: john话题: write
进入Programming版参与讨论
1 (共1页)
M*****a
发帖数: 2054
1
WRITE a script for searching a text john in entire directories (one
directory can contain another directory) and replace it with TOM
M*****a
发帖数: 2054
2
我知道没有子目录的话,sed足够了
但是有子目录,咋办啊

【在 M*****a 的大作中提到】
: WRITE a script for searching a text john in entire directories (one
: directory can contain another directory) and replace it with TOM

m******t
发帖数: 2416
3

Untested but something like this:
find . -type f -exec sed -i 's/john/TOM/g' \{} \;
or
find . -type f | xargs sed -i 's/john/TOM/g'

【在 M*****a 的大作中提到】
: 我知道没有子目录的话,sed足够了
: 但是有子目录,咋办啊

b******n
发帖数: 592
4
If it is a real task, I strongly recommend you do not use in-place sed.
Always keep the original file.

【在 m******t 的大作中提到】
:
: Untested but something like this:
: find . -type f -exec sed -i 's/john/TOM/g' \{} \;
: or
: find . -type f | xargs sed -i 's/john/TOM/g'

m******t
发帖数: 2416
5

Well make a copy first, and _then_ use sed -i. 8-)

【在 b******n 的大作中提到】
: If it is a real task, I strongly recommend you do not use in-place sed.
: Always keep the original file.

b******n
发帖数: 592
6
of course..just some tip for the guy asking questions.
or just sed file.org > file.mod

【在 m******t 的大作中提到】
:
: Well make a copy first, and _then_ use sed -i. 8-)

M*****a
发帖数: 2054
7
有道理!
把find出来所有的文件然后用pipe传给sed

【在 m******t 的大作中提到】
:
: Well make a copy first, and _then_ use sed -i. 8-)

1 (共1页)
进入Programming版参与讨论
相关主题
vi编辑大文件哪位高人给个Kdevelop的小例子 (转载)
perl or python?小白问题:COM/ATL的CoCreateInstance怎么定位dll的?
matlab source code control?问一个有关ios的技术问题
关于如何检测服务器job完成的问题操作建议:把CNN和Liar联系在一起 (转载)
请教一个弱弱问题,关于#include的pathname请问哪些大学可以从safaribooksonline.com下载pdf文件?
should the .dll and .lib have the same name?急问一个Linux shell问题
a PERL opendir/readdir question[合集] 到底要学习Perl,还是Python?
Need a regular expression for password[合集] Re: 碰上这样的程序员,无语
相关话题的讨论汇总
话题: sed话题: tom话题: directory话题: john话题: write