mirror of
https://github.com/danielmiessler/SecLists
synced 2026-01-06 16:20:06 +01:00
12 lines
No EOL
202 B
Bash
Executable file
12 lines
No EOL
202 B
Bash
Executable file
#!/usr/bin/bash
|
|
|
|
set -e
|
|
set -o pipefail
|
|
|
|
mkdir -p .working_space
|
|
cd .working_space
|
|
git clone --depth=1 https://github.com/trickest/wordlists.git
|
|
cd ../
|
|
|
|
./.bin/trickest-patcher.py
|
|
rm -rf .working_space |