Guest User

Untitled

a guest
Jan 21st, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. #!/bin/bash
  2. if [ $# -eq 0 ]; then
  3. echo "You must include a regex to search. faf something"
  4. exit 1;
  5. fi
  6.  
  7. grep -r -i $1 $PWD
Add Comment
Please, Sign In to add comment