yasnippet-snippets/snippets/sh-mode/if

8 lines
90 B
Text
Raw Normal View History

2011-07-07 14:32:44 +02:00
# -*- mode: snippet -*-
# name: if
# key: if
# --
if ${1:[ -f file]}
then ${2:do}
fi
$0