mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-13 14:32:34 +00:00
10 lines
246 B
Bash
Executable file
10 lines
246 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
[ -e jd-gui-1.4.0.jar ] || wget https://github.com/java-decompiler/jd-gui/releases/download/v1.4.0/jd-gui-1.4.0.jar
|
|
|
|
mkdir -p bin
|
|
cat <<END > bin/jd-gui
|
|
#/bin/bash -e
|
|
java -jar $PWD/jd-gui-1.4.0.jar "\$@"
|
|
END
|
|
chmod 755 bin/jd-gui
|