Advertisement
asanchez75

Linux/dev/null/size

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