1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-10 01:17:44 +03:00

Updates in bash autocompletions

Hi,

I did ./check-undocumented.sh -b (my script just submitted) and checked
the results.

Cheers.
This commit is contained in:
Carlos Morata Castillo 2015-01-10 02:08:21 +01:00 committed by Zbigniew Jędrzejewski-Szmek
parent 001a247324
commit b4f91f2ba3
8 changed files with 17 additions and 11 deletions

View File

@ -37,7 +37,7 @@ __journal_fields=(MESSAGE{,_ID} PRIORITY CODE_{FILE,LINE,FUNC}
_coredumpctl() {
local i verb comps
local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
local OPTS='-h --help --version --no-pager --no-legend -o --output -F --field'
local OPTS='-h --help --version --no-pager --no-legend -o --output -F --field -1'
local -A VERBS=(
[LIST]='list'

View File

@ -28,7 +28,7 @@ _hostnamectl() {
local i verb comps
local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
local OPTS='-h --help --version --transient --static --pretty
--no-ask-password -H --host'
--no-ask-password -H --host --machine'
if [[ $cur = -* ]]; then
COMPREPLY=( $(compgen -W '${OPTS[*]}' -- "$cur") )

View File

@ -44,11 +44,15 @@ _journalctl() {
--disk-usage -f --follow --header
-h --help -l --local --new-id128 -m --merge --no-pager
--no-tail -q --quiet --setup-keys --this-boot --verify
--version --list-catalog --update-catalog --list-boots'
--version --list-catalog --update-catalog --list-boots
--show-cursor --dmesg -k --pager-end -e -r --reverse
--utc -x --catalog --no-full --force --dump-catalog
--flush'
[ARG]='-b --boot --this-boot -D --directory --file -F --field
-o --output -u --unit --user-unit -p --priority'
[ARGUNKNOWN]='-c --cursor --interval -n --lines --since --until
--verify-key'
--after-cursor --verify-key --identifier
--root --machine'
)
if __contains_word "$prev" ${OPTS[ARG]} ${OPTS[ARGUNKNOWN]}; then

View File

@ -34,7 +34,7 @@ _localectl() {
local i verb comps locale_vals
local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
local OPTS='-h --help --version --no-convert --no-pager --no-ask-password
-H --host'
-H --host --machine'
if __contains_word "$prev" $OPTS; then
case $prev in

View File

@ -33,9 +33,10 @@ _loginctl () {
local i verb comps
local -A OPTS=(
[STANDALONE]='--all -a --help -h --no-pager --privileged -P --version'
[ARG]='--host -H --kill-who --property -p --signal -s'
)
[STANDALONE]='--all -a --help -h --no-pager --privileged -P --version
--no-legend --no-ask-password -l --full'
[ARG]='--host -H --kill-who --property -p --signal -s --machine'
)
if __contains_word "$prev" ${OPTS[ARG]}; then
case $prev in

View File

@ -36,7 +36,7 @@ _systemd_analyze() {
local -A OPTS=(
[STANDALONE]='--help --version --system --user --from-pattern --to-pattern --order --require --no-pager'
[ARG]='-H --host -M --machine'
[ARG]='-H --host -M --machine --fuzz --man'
)
local -A VERBS=(

View File

@ -30,7 +30,8 @@ _systemd_cgtop() {
local -A OPTS=(
[STANDALONE]='-h --help --version -p -t -c -m -i -b --batch -n --iterations -d --delay'
)
[ARG]='--cpu --depth'
)
_init_completion || return

View File

@ -28,7 +28,7 @@ _timedatectl() {
local i verb comps
local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
local OPTS='-h --help --version --adjust-system-clock --no-pager
--no-ask-password -H --host'
--no-ask-password -H --host --machine'
if __contains_word "$prev" $OPTS; then
case $prev in