3 #==============================================================================
5 # File ID: 4e69dc94-fa61-11dd-b10c-0001805bf4b1
9 # Author: Øyvind A. Holm <sunny@sunbase.org>
10 # License: GNU General Public License version 2 or later.
11 #==============================================================================
19 while test -n "$1"; do
21 -h|
--help) opt_help
=1; shift ;;
22 -q|
--quiet) opt_quiet
=$
(($opt_quiet + 1)); shift ;;
23 -v|
--verbose) opt_verbose
=$
(($opt_verbose + 1)); shift ;;
24 --version) echo $progname $VERSION; exit 0 ;;
27 if printf '%s\n' "$1" |
grep -q ^
-; then
28 echo "$progname: $1: Unknown option" >&2
36 opt_verbose
=$
(($opt_verbose - $opt_quiet))
38 if test "$opt_help" = "1"; then
39 test $opt_verbose -gt 0 && { echo; echo $progname $VERSION; }
44 Usage: $progname [options]
51 Be more quiet. Can be repeated to increase silence.
53 Increase level of verbosity. Can be repeated.
55 Print version information.
63 if test "$osname" = "Linux"; then
64 ls -la --color=always
--full-time "$@" | hum
--field 5 |
$PAGER
66 ls -la "$@" | hum
--field 5 |
$PAGER
69 # vim: set ts=8 sw=8 sts=8 noet fo+=w tw=79 fenc=UTF-8 :