summaryrefslogtreecommitdiff
path: root/completions/qemu
diff options
context:
space:
mode:
Diffstat (limited to 'completions/qemu')
-rw-r--r--completions/qemu57
1 files changed, 28 insertions, 29 deletions
diff --git a/completions/qemu b/completions/qemu
index 724e7a5f..8602cebd 100644
--- a/completions/qemu
+++ b/completions/qemu
@@ -16,79 +16,78 @@ _qemu()
return
;;
-boot)
- COMPREPLY=( $( compgen -W 'a c d n' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W 'a c d n' -- "$cur") )
return
;;
-k)
- COMPREPLY=( $( compgen -W 'ar de-ch es fo fr-ca hu ja mk no pt-br
+ COMPREPLY=( $(compgen -W 'ar de-ch es fo fr-ca hu ja mk no pt-br
sv da en-gb et fr fr-ch is lt nl pl ru th de en-us fi fr-be hr
- it lv nl-be pt sl tr' -- "$cur" ) )
+ it lv nl-be pt sl tr' -- "$cur") )
return
;;
-soundhw)
- COMPREPLY=( $( compgen -W "$( $1 -soundhw ? | awk \
- '/^[[:lower:]]/ {print $1}' ) all" -- "$cur" ) )
+ COMPREPLY=( $(compgen -W "$($1 -soundhw ? | awk \
+ '/^[[:lower:]]/ {print $1}') all" -- "$cur") )
return
;;
-M)
- COMPREPLY=( $( compgen -W "$( $1 -M ? | awk \
- '/^[[:lower:]]/ {print $1}' )" -- "$cur" ) )
+ COMPREPLY=( $(compgen -W "$($1 -M ? | awk \
+ '/^[[:lower:]]/ {print $1}')" -- "$cur") )
return
;;
-cpu)
- COMPREPLY=( $( compgen -W "$( $1 -cpu ? | awk \
- '{print $2}' )" -- "$cur" ) )
+ COMPREPLY=( $(compgen -W "$($1 -cpu ? | awk '{print $2}')" \
+ -- "$cur") )
return
;;
-usbdevice)
- COMPREPLY=( $( compgen -W 'mouse tablet disk: host: serial: braille
- net' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W 'mouse tablet disk: host: serial: braille
+ net' -- "$cur") )
return
;;
-net)
- COMPREPLY=( $( compgen -W 'nic user tap socket vde none dump' \
- -- "$cur" ) )
+ COMPREPLY=( $(compgen -W 'nic user tap socket vde none dump' \
+ -- "$cur") )
return
;;
-serial|-parallel|-monitor)
- COMPREPLY=( $( compgen -W 'vc pty none null /dev/ file: stdio pipe:
- COM udp: tcp: telnet: unix: mon: braille' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W 'vc pty none null /dev/ file: stdio pipe:
+ COM udp: tcp: telnet: unix: mon: braille' -- "$cur") )
return
;;
-redir)
- COMPREPLY=( $( compgen -S":" -W 'tcp udp' -- "$cur" ) )
+ COMPREPLY=( $(compgen -S":" -W 'tcp udp' -- "$cur") )
return
;;
-bt)
- COMPREPLY=( $( compgen -W 'hci vhci device' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W 'hci vhci device' -- "$cur") )
return
;;
-vga)
- COMPREPLY=( $( compgen -W 'cirrus std vmware xenfb none' \
- -- "$cur" ) )
+ COMPREPLY=( $(compgen -W 'cirrus std vmware xenfb none' -- "$cur") )
return
;;
-drive)
- COMPREPLY=( $( compgen -S"=" -W 'file if bus unit index media cyls
- snapshot cache format serial addr' -- "$cur" ) )
+ COMPREPLY=( $(compgen -S"=" -W 'file if bus unit index media cyls
+ snapshot cache format serial addr' -- "$cur") )
return
;;
-balloon)
- COMPREPLY=( $( compgen -W 'none virtio' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W 'none virtio' -- "$cur") )
return
;;
-smbios)
- COMPREPLY=( $( compgen -W 'file type' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W 'file type' -- "$cur") )
return
;;
-watchdog)
- COMPREPLY=( $( compgen -W "$( $1 -watchdog ? 2>&1 | \
- awk '{print $1}' )" -- "$cur" ) )
+ COMPREPLY=( $(compgen -W "$($1 -watchdog ? 2>&1 | \
+ awk '{print $1}')" -- "$cur") )
return
;;
-watchdog-action)
- COMPREPLY=( $( compgen -W 'reset shutdown poweroff pause debug
- none' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W 'reset shutdown poweroff pause debug
+ none' -- "$cur") )
return
;;
-runas)
@@ -99,8 +98,8 @@ _qemu()
if [[ "$cur" == -* ]]; then
- COMPREPLY=( $( compgen -W '$( _parse_help "$1" -help ) -fd{a,b}
- -hd{a..d}' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W '$(_parse_help "$1" -help) -fd{a,b}
+ -hd{a..d}' -- "$cur") )
else
_filedir
fi