Git/suuid/: New commits
[sunny256-utils.git] / fs
blobc370945590ade5d1d649e72a7a79095dd864e9e4
1 #!/usr/bin/env bash
3 #==============================================================================
4 # fs
5 # File ID: 23287f94-a5c7-11e6-a6d5-d3c84ac7b384
7 # [Description]
9 # Author: Øyvind A. Holm <sunny@sunbase.org>
10 # License: GNU General Public License version 2 or later.
11 #==============================================================================
13 progname=fs
14 VERSION=0.1.0
16 if test "$1" = "--version"; then
17 echo $progname $VERSION
18 exit 0
21 if test "$1" = "-h"; then
22 cat <<END
24 Usage: $progname [options]
26 Options:
29 Show this help.
30 --version
31 Print version information.
33 END
34 exit 0
37 fossil "$@"
39 # vim: set ts=8 sw=8 sts=8 noet fo+=w tw=79 fenc=UTF-8 :