Answers for "The command below uses du, sort, and head to show the top five largest files, starting from your /home directory:"

0

The command below uses du, sort, and head to show the top five largest files, starting from your /home directory:

sudo du -a /home | sort -n -r | head -n 5
Posted by: Guest on March-22-2022

Code answers related to "The command below uses du, sort, and head to show the top five largest files, starting from your /home directory:"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language