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
		$