changed birdnet_stats.sh and added security to
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user