#!/bin/sh # Check if this file exists: if test -e config.file then echo "You have a config.file file" else echo "No such file config.file" fi echo "Finished with my 'if' test"