与从最长到最短的排序行类似,如何将文件中的所有行从最短到最长排序?例如"
This is a long sentence. This is not so long. This is not long.
那就变成:
This is not long. This is not so long. This is a long sentence.
sorting bash awk
awk ×1
bash ×1
sorting ×1