Fix zsh completion for *.pkg.tar
[pacman-ng.git] / scripts / library / README
blob1e9c962bebdefb36d4aff0ea0367198b8162b70c
1 This folder contains code snippets that can be reused by multiple
2 scripts.  A brief description of each file follows.
4 output_format.sh:
5 Provides basic output formatting functions with levels 'msg', 'msg2',
6 'warning' and 'error'.  The 'msg' amd 'msg2' functions print to stdout
7 and can be silenced by defining 'QUIET'.  The 'warning' and 'error'
8 functions print to stderr with the appropriate prefix added to the
9 message.
11 parse_options.sh:
12 A getopt replacement to avoids portability issues, in particular the
13 lack of long option name support in the default getopt provided by some
14 platforms.
15 Usage: parse_option $SHORT_OPTS $LONG_OPTS "$@"