changed birdnet_stats.sh and added security to

This commit is contained in:
Patrick McGuire
2021-10-05 11:56:51 -04:00
parent 6dcb90746c
commit f24c5923b0
2 changed files with 18 additions and 2 deletions
+12 -2
View File
@@ -28,7 +28,12 @@ if [ "${a}" -ge "1" ];then
else
SOFAR=0
fi
echo " -$a detections so far"
if [ $SOFAR = 1 ];then
verbage=detection
else
verbage=detections
fi
echo " -$a $verbage so far"
echo
echo " -$SOFAR species identified so far"
echo
@@ -39,7 +44,12 @@ while read -r line;do
SPECIES=${SPECIES/_}
[ -z ${SPECIES} ] && continue
DETECTIONS="$(ls -1 ${EXTRACTED}/By_Date/*/${SPECIES}| wc -l)"
echo -e " | $line # of detections so far: ${DETECTIONS}\n"
if [ ${DETECTIONS} = 1 ];then
verbage=detection
else
verbage=detections
fi
echo -e "${DETECTIONS} $verbage for ${SPECIES//_/ }" | sort
done < ${IDFILE}
fi
echo
+6
View File
@@ -196,6 +196,9 @@ ${EXTRACTIONS_URL} {
basicauth /Processed* {
birdnet ${HASHWORD}
}
basicauth /scripts* {
birdnet ${HASHWORD}
}
basicauth /stream {
birdnet ${HASHWORD}
}
@@ -209,6 +212,9 @@ http://birdnetsystem.local {
basicauth /Processed* {
birdnet ${HASHWORD}
}
basicauth /scripts* {
birdnet ${HASHWORD}
}
basicauth /stream {
birdnet ${HASHWORD}
}