Advertisement
Guest User

the script I ran

a guest
Aug 14th, 2014
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.16 KB | None | 0 0
  1. #!/bin/bash
  2. echo " " >> fixzips.txt
  3. for file in *.zip
  4. do
  5. mv $file ${file%_\(English\).zip}__\(English\).zip
  6. zip -fv ${file%_\(English\).zip}__\(English\).zip
  7. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement