jsonfmt.py: Don't sort the JSON, use the new -s/--sort option for that
[sunny256-utils.git] / Lib / std / bash-no-getopt
blobb70b033a771705b3f85468d2b1c34a2b39f21f03
1 #!/usr/bin/env bash
3 #=======================================================================
4 # STDfilenameDTS
5 # File ID: STDuuidDTS
7 # [Description]
9 # Author: Øyvind A. Holm <sunny@sunbase.org>
10 # License: GNU General Public License version 2 or later.
11 #=======================================================================
13 progname=STDfilenameDTS
14 VERSION=0.0.0
16 if test "$1" = "--version"; then
17 echo $progname $VERSION
18 exit 0
21 if test "$1" = "-h" -o "$1" = "--help"; then
22 cat <<END
24 Usage: $progname [options]
26 Options:
28 -h, --help
29 Show this help.
30 --version
31 Print version information.
33 END
34 exit 0