Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- http://www.xaprb.com/blog/2006/06/06/what-does-devnull-21-mean/
- http://www.cyberciti.biz/faq/find-large-files-linux/
- http://www.blindhog.net/linux-find-large-directories/
- nohup find . -type f -size +50000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }' > larger.files 2>&1 &
- nohup find . -type d -size +1G -exec ls -lh {} \; | awk '{ print $9 ": " $5 }' > larger.files 2>&1 &
- wibble > /dev/null 2>&1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement