Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2584562
  • 博文数量: 351
  • 博客积分: 76
  • 博客等级: 上将
  • 技术积分: 3555
  • 用 户 组: 普通用户
  • 注册时间: 2004-11-13 21:27
文章分类

全部博文(351)

文章存档

2013年(1)

2012年(4)

2011年(7)

2010年(16)

2009年(34)

2008年(34)

2007年(34)

2006年(68)

2005年(82)

2004年(71)

分类:

2006-04-13 17:36:28

例如替换目录中所有*.html文件中的"test"为"test123".

代码如下:
#!/bin/sh
#replace_string.sh - replace string in files under the same directory
#Example Usage: ./replace_sting.sh "*.html" test test123
#Author: Kevin Zhou
#Date: 2006/4/13

usage()
{
        echo "./replace_string \"file_type\" src_string dst_string"
        echo "Exapmle: ./replace_string \"*\" test test123"
        exit
}

if [ -z $2 ]; then
        usage
fi

if [ -z $3 ]; then
        usage
fi

for f in $1; do
        echo "sed s/$2/$3/ $f > $f.bak"
        echo "mv -f $f.bak $f"
done
阅读(2335) | 评论(0) | 转发(0) |
0

上一篇:愚人节活动

下一篇:每天给爱10分钟

给主人留下些什么吧!~~