dotar/vim/snippets/sh/iffile.snippet

5 lines
65 B
Plaintext
Raw Normal View History

2011-11-18 05:45:33 +08:00
if [ ! -e ${1:filename} ]; then
echo "file $1 not present"
fi