Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下要合并的pdf文件。
20121024aC004101 20121024a_002101 20121024a_003101 20121024aN006101 20121024aA001101 20121024a_005101 etc...
但我的结果应该是 00101, 002101... 即基于第 11 个字符排序;任何人都可以帮助我。我是 bash 新手,最近开始学习。
利用
sort -k1.11
-k开关告诉sort从第 11 个字符开始对第一个字段进行排序。
-k
sort