Dre4m Shell
Server IP : 85.214.239.14  /  Your IP : 3.137.190.77
Web Server : Apache/2.4.61 (Debian)
System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64
User : www-data ( 33)
PHP Version : 7.4.18
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /usr/share/bash-completion/completions/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /usr/share/bash-completion/completions/qemu-system-i386
# bash completion for qemu                                 -*- shell-script -*-

_qemu()
{
    local cur prev words cword
    _init_completion || return

    case $prev in
        -fd[ab] | -hd[abcd] | -cdrom | -option-rom | -kernel | -initrd | -bootp | -pidfile | \
            -loadvm | -mtdblock | -sd | -pflash | -bios)
            _filedir
            return
            ;;
        -tftp | -smb | -L | -chroot)
            _filedir -d
            return
            ;;
        -boot)
            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
                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"))
            return
            ;;
        -soundhw)
            COMPREPLY=($(compgen -W "$($1 -soundhw help | awk \
                '/^[[:lower:]]/ {print $1}') all" -- "$cur"))
            return
            ;;
        -machine | -M)
            COMPREPLY=($(compgen -W "$($1 $prev help | awk \
                '/^[[:lower:]]/ {print $1}')" -- "$cur"))
            return
            ;;
        -cpu)
            COMPREPLY=($(compgen -W "$($1 -cpu help | awk '{print $2}')" \
                -- "$cur"))
            return
            ;;
        -usbdevice)
            COMPREPLY=($(compgen -W 'mouse tablet disk: host: serial: braille
                net' -- "$cur"))
            return
            ;;
        -net)
            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"))
            return
            ;;
        -redir)
            COMPREPLY=($(compgen -S":" -W 'tcp udp' -- "$cur"))
            return
            ;;
        -bt)
            COMPREPLY=($(compgen -W 'hci vhci device' -- "$cur"))
            return
            ;;
        -vga)
            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"))
            return
            ;;
        -balloon)
            COMPREPLY=($(compgen -W 'none virtio' -- "$cur"))
            return
            ;;
        -smbios)
            COMPREPLY=($(compgen -W 'file type' -- "$cur"))
            return
            ;;
        -watchdog)
            COMPREPLY=($(compgen -W "$($1 -watchdog help 2>&1 |
                awk '{print $1}')" -- "$cur"))
            return
            ;;
        -watchdog-action)
            COMPREPLY=($(compgen -W 'reset shutdown poweroff pause debug
                none' -- "$cur"))
            return
            ;;
        -runas)
            _allowed_users
            return
            ;;
    esac

    if [[ $cur == -* ]]; then
        COMPREPLY=($(compgen -W '$(_parse_help "$1" -help) -fd{a,b}
            -hd{a..d}' -- "$cur"))
    else
        _filedir
    fi
} &&
    complete -F _qemu qemu qemu-kvm qemu-system-i386 qemu-system-x86_64

# ex: filetype=sh

Anon7 - 2022
AnonSec Team