| 12345678910111213141516171819202122232425262728293031 | #!/bin/bashif [ -z "$1" ]then	echo "This script will make pcap files from the afl-fuzz crash/hang files"	echo "It needs hexdump and text2pcap"	echo "Please give output directory as argument"	exit 2fifor i in `ls $1/crashes/id*`do	PCAPNAME=`echo $i | grep pcap`	if [ -z "$PCAPNAME" ]; then		hexdump -C $i > $1/$$.tmp		text2pcap $1/$$.tmp ${i}.pcap	fidonefor i in `ls $1/hangs/id*`do	PCAPNAME=`echo $i | grep pcap`	if [ -z "$PCAPNAME" ]; then		hexdump -C $i > $1/$$.tmp		text2pcap $1/$$.tmp ${i}.pcap	fidonerm -f $1/$$.tmpechoecho "Created pcap files:"ls $1/*/*.pcap
 |