码迷,mamicode.com
首页 > 其他好文 > 详细

cut

时间:2014-10-29 21:22:35      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:style   color   sp   on   bs   ad   as   nbsp   ca   

zzx@sdcm152:~$ cat /etc/passwd |cut -f1 -d:|head -3         #或者  cut -f1 -d : 或者  cut -f1 -d ‘:‘
root
daemon
bin

zzx@sdcm152:~$ cat /etc/passwd |cut -f1,3 -d:|head -3  #第一列和第三列
root:0
daemon:1
bin:2

zzx@sdcm152:~$ cut /etc/passwd -c3,5 |head -3    # 第三第四个字符
o:
eo
nx

cut

标签:style   color   sp   on   bs   ad   as   nbsp   ca   

原文地址:http://www.cnblogs.com/hanxing/p/4060300.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!