在学到cut命令的时候,我们知道 -f 是指定段,-c 是指定分隔符,现在我有一个file文件,内容如下:[root@desktop19 mnt]# cat file
20110801 root user1
20110802 root user2
20110803 root user3
20110804 root user4
20110805 root user5
20110806 root user6
我要截取其中列的时候,需要指定的分隔符是 tab,搜集很久之后找到了这个答案:
1) ctrl+v
2)按Tab
3)记得用‘’把tab引起来哦!
[root@desktop19 mnt]# cat file |cut -f2 -d' '
root
root
root
root
root
root
如果你们有更好的方案,希望分享出来!
阅读(4031) | 评论(0) | 转发(0) |