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.
16 lines
320 B
16 lines
320 B
1 month ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
FAIL=0
|
||
|
|
||
|
if grep '^#!.*python' $@ | grep -v '#!/usr/bin/env python3$'; then
|
||
|
echo -e "Invalid shebang! Must use '#!/usr/bin/env python3'\n"
|
||
|
FAIL=1
|
||
|
fi
|
||
|
|
||
|
if grep '^#!.*bash' $@ | grep -v '#!/usr/bin/env bash$'; then
|
||
|
echo -e "Invalid shebang! Must use '#!/usr/bin/env bash'"
|
||
|
FAIL=1
|
||
|
fi
|
||
|
|
||
|
exit $FAIL
|