mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-13 14:32:34 +00:00
12 lines
183 B
Bash
Executable file
12 lines
183 B
Bash
Executable file
#!/bin/bash
|
|
|
|
git clone --depth 1 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 ..
|