We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
/* --max-depth 옵션 0 : 현재 위치의 디렉토리 1 : 하위 디렉토리 2 : 하위 디렉토리/하위 디렉토리 */ // 하위 depth = 1 디렉토리까지 용량 확인 $ du -h --max-depth=1 // 하위 디렉토리 + 현재 목록의 파일들까지 함께 용량 확인 $ du -sh * // 위 명령어에 용량이 작은 순으로 정렬 $ du -sh * | sort -hs // 위 명령어에 용량이 큰 순으로 정렬 $ du -sh * | sort -hr // logs 디렉토리의 용량 확인 $ du -sh logs // 사용량을 단위(K, M, G, T)별로 보여줌 $ du -h // GB이상의 디렉토리만 표시 $ du -sh * | grep [0-9]G // 표시 차이 $ du -s // 5463790 $ du -sh // 5.3G
The text was updated successfully, but these errors were encountered:
No branches or pull requests
리눅스 디렉토리 용량 확인(du)
Option
The text was updated successfully, but these errors were encountered: