view bin/anonlog @ 338:2105e89ffe69

<ais523> run sed '/echo/s/$/ | sed "s=<[^>]*>=="/' < bin/log > bin/anonlog
author HackBot
date Sun, 29 Apr 2012 02:35:14 +0000
parents
children e9c4f64872b5
line wrap: on
line source

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