Update helper_stats_graphs.yaml

This commit is contained in:
Alexandre
2023-03-21 19:11:23 +01:00
committed by GitHub
parent 7cd15a3493
commit efaf9bdf0d

View File

@@ -161,8 +161,8 @@ jobs:
# If non null
if [[ ${#FOLDER} -gt 2 ]]; then
cp Stats3 StatsTmp
sed -n "/Date/p" Stats3 > StatsTmp
sed -n "/$TITLE/p" Stats3 >> StatsTmp
sed -n "/Date/p" Stats3 > "$FOLDER"/StatsTmp
sed -n "/$TITLE/p" Stats3 >> "$FOLDER"/StatsTmp
# Transpose data
awk '
{
@@ -211,6 +211,7 @@ jobs:
plot for [i=2:*] 'StatsTmp' using 1:i w l title columnhead(i)
EOFMarker
)
rm StatsTmp
cd .. || true
fi
done