Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- unzip -u $1
- mkfifo /tmp/pipe
- find * -print|sort > /tmp/pipe &
- rm -d $(zipinfo -1 $1|sort|comm -13 - /tmp/pipe)
- rm /tmp/pipe
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement