4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

sortコマンド

Last updated at Posted at 2014-02-23

平文の行をアルファベット順や数値順で並べ替えてくれます。
ファイルそのものを修正しません。

代表的なオプション

オプション 説明
-n 数値順に並べ替え(10は2より後ろ)。半角空白記号とタブは無視
-r 逆順に並べ替え
-f 大文字と小文字を区別せず並べ替え
+数 最初の「数」欄を使わずに並べ替え
-k

ACL追加情報をもっていて、パーミッションの末尾にプラス記号(+)があるディレクトリの一覧を容量順に並べ替える

ls -l | grep "\+" | sort -n -k 5

各行に512バイト単位の大きさで容量を記した形式で全ファイルの一覧を生成した後、その結果をsort -rnに与えて数値として降順で並べ替え、さらにheadコマンドで先頭の10行を書き出す

find . -type -f -print0 | xargs -0 ls -s1 | sort -rn | head
4
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?