mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-14 06:52:36 +00:00
14 lines
272 B
Bash
Executable file
14 lines
272 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
git clone https://code.google.com/p/firmware-mod-kit/
|
|
cd firmware-mod-kit/src
|
|
./configure
|
|
make
|
|
cd ../..
|
|
|
|
mkdir -p bin
|
|
for i in firmware-mod-kit/*.sh
|
|
do
|
|
echo "$(dirname $(readlink -m $0))/$i \"\$@\"" > bin/$(basename $i)
|
|
chmod 755 bin/$(basename $i)
|
|
done
|