From caa337d5ea18b8ef9dc36f2073c6aef99d36a2ae Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Wed, 1 Jan 2020 09:58:25 +1100 Subject: [PATCH] Update linux.md --- linux.md | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/linux.md b/linux.md index b6f2e806..8deecd38 100644 --- a/linux.md +++ b/linux.md @@ -14,21 +14,18 @@ title: Linux ### Display the amount of available disk space - $ df - -All File System: - - $ df -a - -Human Readable Format: - - $ df -h +```sh +df +df -h # human-readable format +df -a # all filesystems +``` ### Display disk usage -Largest 10 folder/file in the current directory: - - $ du -hsx * | sort -rh | head -10 +```sh +du +du -hsx * | sort -rh | head -10 # largest 10 folders +``` ### Answer yes in a bash script