diff options
Diffstat (limited to 'test.sh')
| -rw-r--r-- | test.sh | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -0,0 +1,13 @@ +if [[ ! "$(php polyglot.txt)" = '#php' ]]; then + echo php >&2 + exit 1 +fi +if [[ ! "$(ruby polyglot.txt)" = '#ruby' ]]; then + echo ruby >&2 + exit 1 +fi +if [[ ! "$(perl polyglot.txt)" = '#perl' ]]; then + echo perl >&2 + exit 1 +fi +echo okay |
