linux下實現刪除一個檔案每行的前幾列

taozi343805436發表於2013-12-03
$ cat file
123456789
123456789
123456789
123456789
$ sed 's/.\{6\}//' file
789
789
789
789

相關文章