dotar/vim/snippets/sh/iffile.snippet
2011-11-17 16:00:49 -06:00

5 lines
65 B
Plaintext
Executable File

if [ ! -e ${1:filename} ]; then
echo "file $1 not present"
fi