Title | 리눅스나 유닉스에서 폴더별 용량 체크 Check capacity per folder on Linux or UNIX | ||||||
Writer | 이지섭 | Write Date | Feb 21 2018 | Modify Date | Aug 9 2024 | View Count | 3368 |
A command to check the total capacity of each file in the current location and each one-depth subfolder in Linux or UNIX.
$ du -sk *
The size of the file and each folder is calculated and displayed in Kilo Byte units. If your server supports the h option, you can use the human readable option.
$ du -sh * | |||||||