Advertisement
Artem78

Untitled

Dec 16th, 2015
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. #!/bin/bash
  2. for f in *.zip
  3. do
  4. #7721001557
  5. r=`zipgrep -H '777' $f`
  6. if [[ $r != '' ]];
  7. then
  8. echo $f
  9. echo "$r"
  10. fi
  11. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement