Blame | Last modification | View Log | RSS feed
# bash completion for ddhave dd &&_dd(){local curCOMPREPLY=()_get_comp_words_by_ref -n = curcase $cur inif=*|of=*)cur=${cur#*=}_filedirreturn 0;;conv=*)cur=${cur#*=}COMPREPLY=( $( compgen -W 'ascii ebcdic ibm block unblock lcasenotrunc ucase swab noerror sync' -- "$cur" ) )return 0;;esac_expand || return 0COMPREPLY=( $( compgen -W '--help --version' -- "$cur" ) \$( compgen -W 'bs cbs conv count ibs if obs of seek skip' \-S '=' -- "$cur" ) )} &&complete -F _dd -o nospace dd# Local variables:# mode: shell-script# sh-basic-offset: 4# sh-indent-comment: t# indent-tabs-mode: nil# End:# ex: ts=4 sw=4 et filetype=sh