#!/bin/sh

rm -f fred
if [ -f fred ]; then
  :
else
  echo file fred does not exist
fi

exit 0
