ls -sオプションフラグは、ファイルサイズをリストします。
ls -Sオプションフラグは、ファイル/ディレクトリリストをファイルサイズでソートします。
ls -sオプションフラグは、ファイルサイズをリストします。
$ ls -s [options] [file|dir]
デフォルトのリスト:
$ ls
 Desktop   Downloads Pictures Templates Videos
 Documents Music     Public   todo.txt
 $
ファイルサイズのリスト:
$ ls -s
 total 4
 0 Desktop   0 Downloads 0 Pictures 0 Templates 0 Videos
 0 Documents 0 Music     0 Public   4 todo.txt
 $
ファイルサイズの長いリスト形式:
$ ls -ls
 total 4
 0 drwxr-xr-x 2 user user   80 2011-08-17 16:52 Desktop
 0 drwxr-xr-x 2 user user   40 2011-08-17 16:52 Documents
 0 drwxr-xr-x 2 user user   40 2011-08-17 16:52 Downloads
 0 drwxr-xr-x 2 user user   40 2011-08-17 16:52 Music
 0 drwxr-xr-x 2 user user  120 2011-08-17 18:14 Pictures
 0 drwxr-xr-x 2 user user   40 2011-08-17 16:52 Public
 0 drwxr-xr-x 2 user user   40 2011-08-17 16:52 Templates
 4 -rw-r--r-- 1 user user  131 2011-08-17 18:07 todo.txt
 0 drwxr-xr-x 2 user user   40 2011-08-17 16:52 Videos
 $
ls -Sオプションフラグは、ファイル/ディレクトリリストをファイルサイズでソートします。
$ ls -S [options] [file|dir]
デフォルトのリスト:
$ ls
 Desktop   Downloads Pictures Templates Videos
 Documents Music     Public   todo.txt
 $
ファイルサイズでソートされたリスト:
$ ls -S
 todo.txt Desktop   Downloads Public    Videos
 Pictures Documents Music     Templates
 $
ファイルサイズでソートされた長いリスト形式:
$ ls -lS
 total 4
 -rw-r--r-- 1 user user 131 2011-08-17 18:07 todo.txt
 drwxr-xr-x 2 user user 120 2011-08-17 18:14 Pictures
 drwxr-xr-x 2 user user  80 2011-08-17 16:52 Desktop
 drwxr-xr-x 2 user user  40 2011-08-17 16:52 Documents
 drwxr-xr-x 2 user user  40 2011-08-17 16:52 Downloads
 drwxr-xr-x 2 user user  40 2011-08-17 16:52 Music
 drwxr-xr-x 2 user user  40 2011-08-17 16:52 Public
 drwxr-xr-x 2 user user  40 2011-08-17 16:52 Templates
 drwxr-xr-x 2 user user  40 2011-08-17 16:52 Videos
 $