Guest User

Untitled

a guest
Apr 16th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.09 KB | None | 0 0
  1. # disk usage per directory
  2. usage ()
  3. {
  4. if [ $1 ]
  5. then
  6. du -hd $1
  7. else
  8. du -hd 1
  9. fi
  10. }
Add Comment
Please, Sign In to add comment