mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-13 22:42:38 +00:00
9 lines
153 B
Text
9 lines
153 B
Text
|
#!/bin/bash -e
|
||
|
|
||
|
curl http://www.cgsecurity.org/testdisk-7.0.linux26-x86_64.tar.bz2 | tar xvj
|
||
|
|
||
|
mkdir -p bin
|
||
|
cd bin
|
||
|
ln -s ../testdisk-7.0/*_static .
|
||
|
cd ..
|