9 lines
172 B
Bash
Executable File
9 lines
172 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
RAMDISK=/tmp/afl-ramdisk
|
|
mkdir $RAMDISK && chmod 777 $RAMDISK
|
|
mount -t tmpfs -o size=768M tmpfs $RAMDISK
|
|
|
|
cd ../.. && git clone . $RAMDISK/fwknop.git
|
|
exit $?
|