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.
如何在 Unix 终端(Mac OS)中显示按硬链接计数排序的文件列表?
ls -l在第二列中显示此数据。如何按此列排序?
谢谢
ls -l | sort -n -k 2应该为你工作。
ls -l | sort -n -k 2