find the ten biggest files on your file system linux command


/ Published in: Bash
Save to your folder(s)

from: http://www.cyberciti.biz/faq/how-do-i-find-the-largest-filesdirectories-on-a-linuxunixbsd-filesystem/


Copy this code and paste it in your HTML
  1. du -a /var | sort -n -r | head -n 10

Report this snippet


Comments


You need to login to view comments.