Guest User

Untitled

a guest
Oct 18th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #!/bin/bash
  2. #unzip it
  3.  
  4. echo -e "What dir do u want to unzip files in \c "
  5. read word
  6. cd $word
  7. ls -tr | grep -i zip > list
  8. while read file
  9. do
  10. unzip "$file"
  11. done < list
  12. rm -f list
  13. exit 0
Add Comment
Please, Sign In to add comment