摘要:
例1$ cat test1abcdefghijklmnopqrstuvwxyz$ cut test1 -c 1ahorux$ cut test1 -c 2,4-6bdefiklmpsvy$ cut test1 -c -4abcdhijkopqrstuvwxyz$ cut test1 -c 3-cdefgjklmnqtwz$ cut test1 -c -3,3-abcdefghijklmnopqrstuvwxyz例2$ cat test2星期一星期二星期三$ cut test2 -c 3一二三$ cut test2 -b 3���汉字是utf8编码,3字节$ cut test2 -nb 9一二三 阅读全文