我在Windows上使用GNU排序(來自GnuWin32)。我將它重命名爲「sort1.exe」。 輸入文本文件具有空格和製表符,但這些字段由製表符分隔。 我試着用:GNU使用TAB作爲字段分隔符排序
sort1 -n -k2 -t "\t" file.txt
但它說:「SORT1:多字符選項卡 '\ t'
文字看起來像
lazy dog<TAB>123
fox<TAB>1
white tail wolf<TAB>11
blue bear<TAB>7
和輸出應該像
fox<TAB>1
blue bear<TAB>7
white tail wolf<TAB>11
lazy dog<TAB>123
我嘗試使用建議in the other thread,但它不適用於Windows。
我試了一下,給了我同樣的錯誤。 – BearCode