mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-11 17:04:19 +01:00
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
|