mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-14 15:02:33 +00:00
13 lines
173 B
Text
13 lines
173 B
Text
|
#!/bin/bash
|
||
|
|
||
|
git clone https://github.com/acama/xrop.git
|
||
|
cd xrop
|
||
|
git submodule update --init --recursive
|
||
|
make -j $(nproc)
|
||
|
cd ..
|
||
|
|
||
|
mkdir bin
|
||
|
cd bin
|
||
|
ln -s ../xrop/xrop .
|
||
|
cd ..
|