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

用sed命令模拟tac

发布时间:2014-09-05 15:14:42作者:知识屋

用sed命令模拟tac
 
原始数据   www.zhishiwu.com  
Shell代码  
cat data  
 
This is the header line. 
This is the first data line. 
This is the second data line. 
This is the last line. 
 
Shell代码  
tac data  
 
This is the last line. 
This is the second data line. 
This is the first data line. 
This is the header line. 
 
Shell代码    www.zhishiwu.com  
sed -n  '{1!G;h;$p}' data  
 
This is the last line. 
This is the second data line. 
This is the first data line. 
This is the header line.
 
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜