mirror of https://github.com/OISF/suricata
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.
14 lines
233 B
Bash
14 lines
233 B
Bash
8 years ago
|
#!/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
|
||
|
|