Upgrade yt-dlp from version stable@2024.10.07 to stable@2024.12.13
[sunny256-utils.git] / Lib / std / bash-no-getopt-tab
blob5804ab8319d070bfabbc86281c9d172084640c42
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
37 # vim: set ts=8 sw=8 sts=8 noet fo+=w tw=79 fenc=UTF-8 :