#!/bin/sh

rm -f fred
if [ -f fred ]; then
	:
else
	echo soubor fred neexistoval
fi

exit 0
