summaryrefslogtreecommitdiff
path: root/completions/apt-get
diff options
context:
space:
mode:
Diffstat (limited to 'completions/apt-get')
-rw-r--r--completions/apt-get23
1 files changed, 11 insertions, 12 deletions
diff --git a/completions/apt-get b/completions/apt-get
index 43170c22..8fe36f13 100644
--- a/completions/apt-get
+++ b/completions/apt-get
@@ -53,20 +53,19 @@ _apt_get()
esac
if [[ "$cur" == -* ]]; then
- COMPREPLY=( $( compgen -W '-d -f -h -v -m -q -s -y -u -t -b -c -o \
- --download-only --fix-broken --help --version --ignore-missing \
- --fix-missing --no-download --quiet --simulate --just-print \
- --dry-run --recon --no-act --yes --assume-yes --show-upgraded \
- --only-source --compile --build --ignore-hold --target-release \
- --no-upgrade --force-yes --print-uris --purge --reinstall \
- --list-cleanup --default-release --trivial-only --no-remove \
- --diff-only --no-install-recommends --tar-only --config-file \
+ COMPREPLY=( $( compgen -W '-d -f -h -v -m -q -s -y -u -t -b -c -o
+ --download-only --fix-broken --help --version --ignore-missing
+ --fix-missing --no-download --quiet --simulate --just-print
+ --dry-run --recon --no-act --yes --assume-yes --show-upgraded
+ --only-source --compile --build --ignore-hold --target-release
+ --no-upgrade --force-yes --print-uris --purge --reinstall
+ --list-cleanup --default-release --trivial-only --no-remove
+ --diff-only --no-install-recommends --tar-only --config-file
--option --auto-remove' -- "$cur" ) )
else
- COMPREPLY=( $( compgen -W 'update upgrade dselect-upgrade \
- dist-upgrade install remove purge source build-dep \
- download changelog \
- check clean autoclean autoremove' -- "$cur" ) )
+ COMPREPLY=( $( compgen -W 'update upgrade dselect-upgrade
+ dist-upgrade install remove purge source build-dep download
+ changelog check clean autoclean autoremove' -- "$cur" ) )
fi
return 0