ina260-zmq-publisher/.power_unique.sh

23 lines
644 B
Bash
Raw Permalink Normal View History

2024-01-21 11:07:50 +01:00
#!/usr/bin/env bash
tmp=$(mktemp)
while IFS= read -r line; do
echo $line >> $tmp
done
2024-04-05 10:34:44 +02:00
first_line=$(head -n1 $tmp|grep "timestamp,nsecs,power") # To check for validity
2024-01-21 11:07:50 +01:00
last_line=$(cat $tmp | tail -n1)
2024-04-05 10:34:44 +02:00
ncomma=$(echo "$last_line" | tr -cd ',' | wc -c | tr -d ' ') # To check for validity
# Check if measurements are valid (not perfect test but sufficient)
if [ -z "${first_line}" ] || [ $ncomma -ne 2 ]
then
cat $tmp
exit 100
fi
# If valid then proceed to uniqueness
2024-01-21 11:07:50 +01:00
cat $tmp | awk -F"," 'BEGIN{LAST=-1;skipped=0} {if(LAST!=$3){print $1","$2","$3;skipped=0}else{skipped=1} LAST=$3} END{if(skipped){print "'$last_line'"}}'
rm $tmp