’ ¥ji~`‚û¤jÑʇ¼¬Accept-Encoding,User-Agent`>P¼ÿ œo3’5Í…î7 KEY: https://avaliareassessoria.com.br/Ven-SS/root/proc/3/cwd/usr/share/bash-completion/completions/mkswap HTTP/1.1 200 OK Date: Sat, 12 Sep 2026 07:13:06 GMT Server: Apache Last-Modified: Tue, 02 Feb 2021 16:31:37 GMT Accept-Ranges: bytes Content-Length: 765 Vary: Accept-Encoding,User-Agent Connection: close Content-Type: text/plain _mkswap_module() { local cur prev OPTS COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" case $prev in '-p'|'--pagesize') COMPREPLY=( $(compgen -W "bytes" -- $cur) ) return 0 ;; '-L'|'--label') COMPREPLY=( $(compgen -W "label" -- $cur) ) return 0 ;; '-v'|'--swapversion') COMPREPLY=( $(compgen -W "1" -- $cur) ) return 0 ;; '-U'|'--uuid'|'-h'|'--help'|'-V'|'--version') return 0 ;; esac case $cur in -*) OPTS="--check --force --pagesize --label --swapversion --uuid --version --help" COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) return 0 ;; esac local IFS=$'\n' compopt -o filenames COMPREPLY=( $(compgen -f -- $cur) ) return 0 } complete -F _mkswap_module mkswap