You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
suricata/scripts/afl/listcrashedseries.sh

14 lines
233 B
Bash

#!/bin/bash
NAME=$1
SERIES=$(ls ${NAME}/dump/ |sort|cut -f 1 -d'.'|sort -u)
for S in $SERIES; do
FILEPATH="${NAME}/dump/${S}.999"
if [ ! -f $FILEPATH ]; then
echo "SERIE $S incomplete, possible crash"
fi
done