我如何将其按字母顺序倒序排序?

我如何将其按字母顺序倒序排序?

我想知道如何让它按字母顺序但相反地排序。对于前。 (扎)

cut -d: -f1 /etc/passwd | sort

答案1

您需要使用sort反转-r

cut -d: -f1 /etc/passwd | sort -r

答案2

sort -r当然是这里最好的答案,但更通用且最好知道的是taccat反向):

像这样:

cut -d: -f1 /etc/passwd | sort | tac

相关内容