gpt4 book ai didi

bash - 如何将文件中的行从最短到最长排序?

转载 作者:行者123 更新时间:2023-11-29 09:34:25 25 4
gpt4 key购买 nike

类似于Sorting lines from longest to shortest ,我怎样才能将文件中的所有行从最短到最长排序?例如。”

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.

最佳答案

和你给的链接几乎一模一样

awk '{ print length($0) " " $0; }' $file | sort -n | cut -d ' ' -f 2-

-r 选项用于反转排序。

关于bash - 如何将文件中的行从最短到最长排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12417403/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com