知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

Sed & Awk每日一例之一

发布时间:2014-09-05 13:59:38作者:知识屋

Sed & Awk每日一例之一
 
1、sed [options] {sed-commands} {input-file}
 
sed -n 'p' /etc/passwd
 
2、sed [options] -f {sed-commands-in-a-file} {input-file}
 
$ vi test-script.sed 
/^root/ p 
/^nobody/ p 
 
$ sed -n -f test-script.sed /etc/passwd
 
3、sed [options] -e {sed-command-1} -e {sed-command-2} {input-file}
 
sed -n -e '/^root/ p' -e '/^nobody/ p' /etc/passwd
 
sed -n / 
-e '/^root/ p' / 
-e '/^nobody/ p' / 
/etc/passwd
 
4、sed [options] '{ 
           sed-command-1 
           sed-command-2 }' input-file
 
sed -n '{ 
  /^root/ p 
  /^nobody/ p 
}' /etc/passwd
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜