You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
172 B

  1. #! /bin/sh
  2. FILE=$(echo $1 | sed s/.go/_gen.go/)
  3. echo "searching" $FILE "for" $2
  4. grep -q $2 $FILE
  5. if [ $? -eq 0 ]
  6. then
  7. echo "OK"
  8. else
  9. echo "whoops!"
  10. exit 1
  11. fi