Skip to content
Please note that GitHub no longer supports Internet Explorer.

We recommend upgrading to the latest Microsoft Edge, Google Chrome, or Firefox.

Learn more

Instantly share code, notes, and snippets.

@brandonprry brandonprry/afl-ptmin.sh
Last active May 6, 2018

Embed
What would you like to do?
Parallelize afl-tmin to use multiple cores
#!/bin/bash
cores=$1
inputdir=$2
outputdir=$3
pids=""
total=`ls $inputdir | wc -l`
for k in `seq 1 $cores $total`
do
for i in `seq 0 $(expr $cores - 1)`
do
file=`ls -Sr $inputdir | sed $(expr $i + $k)"q;d"`
afl-tmin -i $inputdir/$file -o $outputdir/$file -- & #put the command to run after the --
done
wait
done
@fennecdjay

This comment has been minimized.

Copy link

fennecdjay commented May 16, 2017

very handy, thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
You can’t perform that action at this time.