감동, 마음이 움직이는 것
[command] ls -S 사이즈로 소팅해서 보여줌 본문
Tips (Utility, Computer Language, and etc.)
[command] ls -S 사이즈로 소팅해서 보여줌
Struggler J. 2017. 2. 24. 03:20I 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)
'Tips (Utility, Computer Language, and etc.)' 카테고리의 다른 글
[일기] 자존감 (0) | 2017.02.25 |
---|---|
[gnuplot] do for 에서 double값 쓰고 싶을때 (1) | 2017.02.25 |
[c++] append로 파일열기 (0) | 2017.02.23 |
[gnuplot] \tilde{x} 표현하기 (1) | 2017.02.23 |
[Latex] 로마자 숫자표현하기 (0) | 2017.02.15 |