changeset 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 ab2c49f31e97
children d5004865dae3
files bin/anonlog
diffstat 1 files changed, 9 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bin/anonlog	Sun Apr 29 02:35:14 2012 +0000
@@ -0,0 +1,9 @@
+#!/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
+