3 #==============================================================================
5 # File ID: f703e6f4-cffd-11e6-87a5-f74d993421b0
7 # Set the current git-annex repository to one of the standard groups for
10 # Author: Øyvind A. Holm <sunny@sunbase.org>
11 # License: GNU General Public License version 2 or later.
12 #==============================================================================
20 while test -n "$1"; do
22 -h|
--help) opt_help
=1; shift ;;
23 -q|
--quiet) opt_quiet
=$
(($opt_quiet + 1)); shift ;;
24 -v|
--verbose) opt_verbose
=$
(($opt_verbose + 1)); shift ;;
25 --version) echo $progname $VERSION; exit 0 ;;
28 if printf '%s\n' "$1" |
grep -q ^
-; then
29 echo "$progname: $1: Unknown option" >&2
37 opt_verbose
=$
(($opt_verbose - $opt_quiet))
39 if test "$opt_help" = "1"; then
40 test $opt_verbose -gt 0 && { echo; echo $progname $VERSION; }
43 Set the current git-annex repository to one of the standard groups for
44 preferred content, for example "backup", "transfer", "manual", etc.
47 Usage: $progname [options] GROUP
54 Be more quiet. Can be repeated to increase silence.
56 Increase level of verbosity. Can be repeated.
58 Print version information.
66 if test -z "$group"; then
67 echo $progname: No group specified
>&2
74 # vim: set ts=8 sw=8 sts=8 noet fo+=w tw=79 fenc=UTF-8 :