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

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