mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-13 22:42:38 +00:00
12 lines
196 B
Bash
Executable file
12 lines
196 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
git clone --depth 1 https://github.com/endrazine/wcc
|
|
pushd wcc
|
|
git submodule init
|
|
git submodule update
|
|
|
|
make
|
|
mv bin/ ../
|
|
popd
|
|
pushd bin/
|
|
sed -i "s&/usr/bin/wsh&$(pwd)/wsh&" ./wcch
|