Guest User

Untitled

a guest
Dec 11th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. #!/bin/bash
  2. for a in $( find "$1" -type f )
  3. do
  4. if[ egrep 'it21754' $a ]
  5. then
  6. echo "0"
  7. else
  8. echo "1"
  9. fi
  10. done
Add Comment
Please, Sign In to add comment