yasnippet-snippets/snippets/sh-mode/if
2017-08-13 12:16:55 +01:00

8 lines
No EOL
90 B
Text

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