Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- dir=$1
- for file in $dir/*;do
- [ -f "$file" ] && du -h $file
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement