감동, 마음이 움직이는 것

[command] ls -S 사이즈로 소팅해서 보여줌 본문

Tips (Utility, Computer Language, and etc.)

[command] ls -S 사이즈로 소팅해서 보여줌

Struggler J. 2017. 2. 24. 03:20

I intends to show non zero size files using "ls".

So tried to figure out how I can do it.

http://superuser.com/questions/191889/how-can-i-list-only-non-empty-files-using-ls

http://www.unix.com/unix-for-dummies-questions-and-answers/25514-how-find-files-not-empty.html

Simply, I can do this using -S option for "ls" which is sorting all files according to the file sizes.


ls -l -S -r |grep error

이렇게 쓰면 error파일중에서 빈파일이 아닌 것들이 하위에(커멘드 라인 바로 위) 뜬다.

만약 모든 파일이 빈 파일이라면  error가 없었던 것이므로 다 지워버려도 무방. (in my case)