Create script to extract words from the log, and add more words.

This commit is contained in:
2025-07-23 12:11:31 +02:00
parent bd59092674
commit fa7eddf02f
3 changed files with 215 additions and 187 deletions

View File

@@ -1,3 +1,3 @@
#!/bin/sh
grep possibly rstat.log | awk '{print $6 }' | tr -d : | tr -d \$ | sort -u | awk '{printf "%s\"%s\"", sep, $0; sep=", "} END {print ""}'
grep possibly rstat.log | grep -v 'YFPricesMissingError' | awk '{print $6 }' | tr -d : | tr -d \$ | sort -u | awk '{printf "%s\"%s\"", sep, $0; sep=", "} END {print ""}'