|
1
|
cat <<\EOF |
|
2
|
usage: some-command [options] <args>... |
|
3
|
|
|
4
|
some-command does foo and bar! |
|
5
|
|
|
6
|
--[no-]foo can be negated |
|
7
|
--no-bar can be positivated |
|
8
|
--bar opposite of --no-bar |
|
9
|
--positive-only cannot be negated |
|
10
|
--no-negative cannot be positivated |
|
11
|
|
|
12
|
EOF |