ls 해서 용량별로 보고 싶어 검색
흐음.. 아름답지 않아!! (길어서 외우기 싫다는 의미)
$ ls --sort=size -l |
이런 산뜻한 걸 먼저 알려줬어야지!!
-S Sort by file size, largest first |
[링크 : https://www.cyberciti.biz/faq/linux-ls-command-sort-by-file-size/]
$ sort -k 3,3 myFile |
[링크 : https://unix.stackexchange.com/questions/104525/sort-based-on-the-third-column]
-k, --key=POS1[,POS2] start a key at POS1 (origin 1), end it at POS2 (default end of line) |
[링크 : https://linux.die.net/man/1/sort]
우분투 내 도움말에는 key 라고 나오네. 설명이 와닫지 않아!
-k, --key=KEYDEF sort via a key; KEYDEF gives location and type |
'Linux' 카테고리의 다른 글
bash set -e set -x (0) | 2022.06.22 |
---|---|
linux cache clear (0) | 2022.02.11 |
elementary os (0) | 2022.01.28 |
linux 터미널 pause, resume (0) | 2022.01.11 |
systemctl TTYPath (0) | 2022.01.06 |