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
		$
Advertising