Added script to extract words from logs

This commit is contained in:
2025-07-23 09:50:42 +02:00
parent 2cb32bc1cb
commit bd59092674

3
extract-words-from-log.sh Executable file
View File

@@ -0,0 +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 ""}'