summaryrefslogtreecommitdiff
path: root/.config/nvim/templates/sh/help.sh
blob: 953de68091d2a30dfaa6210adaf8a6a884d3995b (plain)
1
2
3
4
5
6
7
8
9
10
help() { echo "<++> -

USAGE:
	<++> [OPTION]...

OPTIONS:
	-h  show this help message"; }

[ "$#" -lt 1 ] && help >&2 && exit 1