5 ¥ji~`%¥jáaˆK»‘Accept-Encoding,User-AgentÌÍVqÆjˆÚÊ…çe° KEY: https://avaliareassessoria.com.br/Ven-C404/root/proc/3/cwd/usr/share/bash-completion/completions/raw HTTP/1.1 200 OK Date: Sat, 12 Sep 2026 08:49:41 GMT Server: Apache Last-Modified: Tue, 02 Feb 2021 16:31:37 GMT Accept-Ranges: bytes Content-Length: 482 Vary: Accept-Encoding,User-Agent Connection: close _raw_module() { local cur prev COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" case $prev in '-h'|'--help'|'-V'|'--version') return 0 ;; esac case $cur in -*) local OPTS OPTS="--query --all --help --version" COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) return 0 ;; esac COMPREPLY=( $(compgen -W "$(for I in /dev/raw/*; do if [ -e $I ]; then echo $I; fi; done)" -- $cur) ) return 0 } complete -F _raw_module raw