mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-14 01:37:06 +00:00
16 lines
347 B
Bash
Executable file
16 lines
347 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
git clone --depth 1 https://github.com/mirror/firmware-mod-kit.git
|
|
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
|
|
|
|
sed -i -e "s/SUDO=\"sudo\"/SUDO=\"\"/" firmware-mod-kit/*.sh
|