diff options
author | merakor <cem@ckyln.com> | 2020-10-05 11:05:46 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2020-10-05 11:05:46 +0000 |
commit | 39af6dbdc87390fa44600482fe6ed21d220e4a93 (patch) | |
tree | 749309bf4dc544999c061e233827ee85cbfa1631 /src/cpt-lib | |
parent | 9b99b0e1eed60a63d93f7225b61f845d6759a8a7 (diff) | |
download | cpt-39af6dbdc87390fa44600482fe6ed21d220e4a93.tar.gz |
cpt: add global options to the library.
FossilOrigin-Name: 31d397b6064679068ed32c337f8c74e7ab24c9b7b9fa44f55a8cc0f52ca3bcee
Diffstat (limited to 'src/cpt-lib')
-rw-r--r-- | src/cpt-lib | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/cpt-lib b/src/cpt-lib index 8509776..27e8c4d 100644 --- a/src/cpt-lib +++ b/src/cpt-lib @@ -276,6 +276,14 @@ getoptions_help() { echo "}" } +global_options() { + msg -- '' 'Global Options:' + flag CPT_FORCE -f --force init:="$CPT_FORCE" -- "Force operation" + flag CPT_PROMPT -y --no-prompt on:0 off:0 init:="$CPT_PROMPT" -- "Do not prompt for confirmation" + param CPT_ROOT --root init:="$CPT_ROOT" -- "Use an alternate root directory" + disp :usage -h --help -- "Show this help message" + disp :version -v --version -- "Print version information" +} warn() { # Print a warning message |