Notice
Recent Posts
Recent Comments
Link
목록sort (1)
공학박사 권경안
sort 명령어를 통해 파일사이즈별로 리스트하기
LISTING FILES BY SIZE If you want to have a listing of the files sorted by size, you can use the following command(s), it will list the files in decrease order. if you need to do the same thing recursively, you could use the second one. ls -l | grep ^- | sort -nr -k 5 | more ls -lR | grep ^- | sort -nr -k 5 | more @ 응용해서 현재 디렉토리부터 서브티렉토리 까지 전부 찾으면서 가장큰사이즈가 큰녀석을 asc 하게 리스트하기. find ./ -name *.log ..
Programming/UNIX
2009. 4. 22. 14:16