colrm First [Last]使用该命令如果不使用参数,则不会删除任何列,而只是将内容输出到标准设备中。
ywx@ywx:~/Desktop/test$ colrm
hello linux 输入hello linux字符串
hello linux 输出刚才输入的字符串hello linux
^C
ywx@ywx:~/Desktop/test$ colrm 4
hello linux 删除第4列之后的所有内容
hel
^C
ywx@ywx:~/Desktop/test$ colrm 4 6
hello linux 删除第4列到第6列之间的内容
hellinux
^C
ywx@ywx:~/Desktop/test$ colrm 4 6 < testfile > testfile1
ywx@ywx:~/Desktop/test$ cat testfile
hello linux
linux is a free unix-like operating system.
this is a linux testfile.
linux.
ywx@ywx:~/Desktop/test$ cat testfile1
hellinux
linis a free unix-like operating system.
this a linux testfile.
lin
阅读(910) | 评论(0) | 转发(0) |