3c491303b5
ftp://ftp.nrl.navy.mil/pub/security/opie/
13 lines
162 B
Bash
13 lines
162 B
Bash
#! /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
|