8 lines
90 B
Plaintext
Raw Normal View History

# -*- mode: snippet -*-
# name: if
# key: if
# --
if ${1:[ -f file]}
then ${2:do}
fi
$0