diff options
| author | Paul Buetow <paul@buetow.org> | 2025-09-23 15:49:45 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-09-23 15:49:45 +0300 |
| commit | 8d30ab4789aee597728116f6b38ecafd9ed71634 (patch) | |
| tree | c9a5a82540788671af99ffb4297131132367b2e9 | |
| parent | 77ff3f3779380f01d4462f82e5dc3eed1770ec3f (diff) | |
break up lines
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | Justfile | 7 |
2 files changed, 7 insertions, 1 deletions
@@ -1,4 +1,5 @@ stats out_gmi/ out_html/ +tmp_out_gmi/ fooodds.log @@ -26,7 +26,12 @@ reports: echo "Generated Gemtext in out_gmi and HTML in out_html" gather-fooodds: @echo Gathering to fooodds.log - (ssh rex@fishfinger.buetow.org '(doas cat /var/log/fooodds; doas zcat /var/log/fooodds.*) | sort -u'; ssh rex@blowfish.buetow.org '( doas cat /var/log/fooodds; doas zcat /var/log/fooodds.0*) | sort -u' ) | grep -F -v 'logfile turned over' | sort -u > fooodds.log + ( \ + ssh rex@fishfinger.buetow.org '(doas cat /var/log/fooodds; doas zcat /var/log/fooodds.*) | sort -u'; \ + ssh rex@blowfish.buetow.org '( doas cat /var/log/fooodds; doas zcat /var/log/fooodds.0*) | sort -u'; \ + ) \ + | grep -F -v 'logfile turned over' \ + | sort -u > fooodds.log wc -l fooodds.log @echo Now check fooodds.log manually and update fooodds.txt accordingly. Any new paths to block? @echo You could use an LLM to add more suspicious enrtries from the fooodds.log to the fooodds.txt file! |
