Linux 指令篇:档案目录管理--cut

www.365-588.com XKER.COM 时间:2007-07-02 12:20:52  评论:

  名称:cut
  
  使用权限:所有使用者
  
  用法:cut -cnum1-num2 filename
  
  说明:显示每行从开头算起 num1 到 num2 的文字。
  
  范例:
  
   shell>> cat example
   test2
   this is test1
   shell>> cut -c0-6 example ## print 开头算起前 6 个字元
   test2
   this i
  
   cut其实很有用
  -c m-n 表示显示每一行的第m个字元到第n个字元。例如:
  
   ---------file-----------
   liubi 23 14000
  ---------file-----------
  # cut -c 3-9,12-20 file
  liubi 14000
  
  -f m-n 表示显示第m栏到第n栏(使用tab分隔)。例如:
   ---------file-----------
  liubi 23 14000
  ---------file-----------
  # cut -f 1,3 file
  liubi 14000
  
  
  

如果您喜欢本文请分享给您的好友,谢谢!如想浏览更多更好的Linux教程内容,请登录:http://www.tootnn.com/edu/os/5/index.html

相关内容标签:Linux教程
评论列表(网友评论仅供网友表达个人看法,并不表明本站同意其观点或证实其描述)