linux:shell_commands:du

du examples

# du -a /home | sort -n -r | head -n 5

# du -a | sort -n -r | head -n 5 # du -hs * | sort -rh | head -5 # du -Sh | sort -rh | head -5

# find -type f -exec du -Sh {} + | sort -rh | head -n 5 # find /home/tecmint/Downloads/ -type f -exec du -Sh {} + | sort -rh | head -n 5 # find /home/tecmint/Downloads/ -type f -printf ā€œ%s %p\nā€ | sort -rn | head -n 5

Enter your comment:
211 +5 =āŸ
 
  • linux/shell_commands/du.txt
  • Last modified: 2020/05/15 13:52
  • by 127.0.0.1