You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
157 B

#!/bin/sh
echo "Content-Type: text/plain"
echo ""
if [ -f /tmp/test/hello.txt ] ; then
cat /tmp/test/hello.txt
exit 0
else
echo "File Not Found"
exit 1
fi