mirror of
https://github.com/systemd/systemd.git
synced 2025-03-01 08:58:29 +03:00
bash-completion: use default completion for redirect operators
This commit is contained in:
parent
fa28e4e377
commit
1413763ea5
@ -52,6 +52,13 @@ _journalctl() {
|
||||
--vacuum-size --vacuum-time --vacuum-files --output-fields'
|
||||
)
|
||||
|
||||
# Use the default completion for shell redirect operators
|
||||
if __contains_word "$prev" '>' '>>' '&>'; then
|
||||
compopt -o filenames
|
||||
COMPREPLY=( $(compgen -f -- "$cur") )
|
||||
return 0;
|
||||
fi
|
||||
|
||||
if __contains_word "$prev" ${OPTS[ARG]} ${OPTS[ARGUNKNOWN]}; then
|
||||
case $prev in
|
||||
--boot|-b)
|
||||
|
Loading…
x
Reference in New Issue
Block a user