Skip to content

Commit

Permalink
use wfuzz in the bash completion script
Browse files Browse the repository at this point in the history
  • Loading branch information
xmendez committed Apr 9, 2019
1 parent a947511 commit 921370a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wfuzz_bash_completion
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ _wfuzz() {
local cur prev
cur=${COMP_WORDS[COMP_CWORD]}
prev=${COMP_WORDS[COMP_CWORD-1]}
WFUZZ_EX="./wfuzz"
WFUZZ_EX="wfuzz"

# Change to your wordlists' base directory
WLDIR=$($WFUZZ_EX --ee files)
Expand Down Expand Up @@ -63,4 +63,4 @@ _wfuzz() {
esac
}

complete -F _wfuzz -o default ./wfuzz
complete -F _wfuzz -o default wfuzz

0 comments on commit 921370a

Please sign in to comment.