Server IP : 184.154.167.98 / Your IP : 3.128.199.62 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 8.2.26 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/bash-completion/completions/ |
Upload File : |
# bash completion for dd -*- shell-script -*- _dd() { local cur prev words cword _init_completion -n = || return case $cur in if=*|of=*) cur=${cur#*=} _filedir return ;; conv=*) cur=${cur#*=} COMPREPLY=( $( compgen -W 'ascii ebcdic ibm block unblock lcase ucase sparse swab sync excl nocreat notrunc noerror fdatasync fsync' -- "$cur" ) ) return ;; iflag=*|oflag=*) cur=${cur#*=} COMPREPLY=( $( compgen -W 'append direct directory dsync sync fullblock nonblock noatime nocache noctty nofollow count_bytes skip_bytes seek_bytes' -- "$cur" ) ) return ;; status=*) cur=${cur#*=} COMPREPLY=( $( compgen -W 'none noxfer progress' -- "$cur" ) ) return ;; esac _expand || return COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) \ $( compgen -W 'bs cbs conv count ibs if iflag obs of oflag seek skip status' -S '=' -- "$cur" ) ) } && complete -F _dd -o nospace dd # ex: filetype=sh