mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-14 06:52:36 +00:00
13 lines
196 B
Text
13 lines
196 B
Text
|
#!/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
|