urchin/tests/Internals/has_shebang_line

21 lines
281 B
Plaintext
Raw Normal View History

2016-03-31 15:05:02 -04:00
TESTING_URCHIN_INTERNALS=true . ../../urchin
echo '!#/bin/sh' > $tmp
! has_shebang_line $tmp
echo '!#/bin/bash' > $tmp
has_shebang_line $tmp
echo '!#/usr/bin/env true' > $tmp
has_shebang_line $tmp
2016-03-31 15:06:23 -04:00
echo > $tmp
2016-03-31 15:10:31 -04:00
! has_shebang_line $tmp
2016-03-31 15:06:23 -04:00
echo '
' > $tmp
2016-03-31 15:10:31 -04:00
! has_shebang_line $tmp