Colrm命令能從一個文件中移除指定的列,從一個標准的input文件中提供輸入,輸出同樣為標准輸出.
EXAMPLE
假如:
文件:text.file
內容:123456789
例1.
$ colrm 4 < test.file 那麼test.file中的內容為: 123 #從第四列開始全部移除
例2.
$ colrm 4 6 < test.file 那麼test.file中的內容為: 123789 #移除第四列到第六例3.
$ colrm 4 6 < test.file >test.file1 將test.file中移除後的文件,輸出到test.file1 123789