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.
我想要两个根据小时列合并两个文件。
文件1:
4:04:12 text1 12:56:32 text2 23:12:12 text3
文件2:
5:05:12 text4 18:12:19 text5
想要的输出:
4:04:12 text1 5:05:12 text4 12:56:32 text2 18:12:19 text5 23:12:12 text3
您可以使用命令sort -n来实现这一点
sort -n
sort -n File1 File2
sort手册页:
sort
sort - 对文本文件的行进行排序 -n, --numeric-sort 根据字符串数值进行比较
sort - 对文本文件的行进行排序
-n, --numeric-sort 根据字符串数值进行比较
只需使用该程序sort(1),如下所示:
sort(1)