mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 16:34:13 +00:00
7 lines
182 B
Bash
Executable file
7 lines
182 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
wget https://didierstevens.com/files/software/pdf-parser_V0_6_4.zip
|
|
unzip pdf-parser_V0_6_4.zip
|
|
mkdir -p bin
|
|
mv pdf-parser.py bin/pdf-parser
|
|
chmod 755 bin/pdf-parser
|