view bin/anonlog @ 11315:854220114ed2

<oerjan> addquote <ais523> b_jonas: hmm, it\'s fairly surprising that you can make a coherent esolang whose primary feature is that it wasn\'t written by Donald Knuth
author HackBot
date Fri, 12 Jan 2018 01:57:49 +0000
parents ee2e8950bb3c
children
line wrap: on
line source

#!/bin/sh
cd /var/irclogs/_esoteric
if [ "$1" ]; then
    grep -P -i -- "$1" ????-??-??.txt | shuf -n 1| sed "s=<[^>]*> =="
else
    file=$(shuf -en 1 ????-??-??.txt)
    echo "$file:$(grep "<.*>" $file | shuf -n 1)" | sed "s=<[^>]*> =="
fi