13 lines
162 B
Plaintext
13 lines
162 B
Plaintext
|
#! /bin/sh
|
||
|
if test -e README >/dev/null 2>/dev/null
|
||
|
then
|
||
|
if test -e a.non-existant-file >/dev/null 2>/dev/null
|
||
|
then
|
||
|
exit 1
|
||
|
else
|
||
|
exit 0
|
||
|
fi
|
||
|
else
|
||
|
exit 1
|
||
|
fi
|