annotate paste/paste.24233 @ 650:cf6adff1b42f

<shachaf> run echo 'echo "$@" | tr a-zA-Z n-za-mN-ZA-M' > bin/rot13; chmod +x bin/rot13
author HackBot
date Sat, 11 Aug 2012 05:51:56 +0000
parents 92d104be8127
children 6ace234a6432
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
342
92d104be8127 <ais523> paste bin/log
HackBot
parents:
diff changeset
1 #!/bin/sh
92d104be8127 <ais523> paste bin/log
HackBot
parents:
diff changeset
2 cd /var/irclogs/_esoteric
92d104be8127 <ais523> paste bin/log
HackBot
parents:
diff changeset
3 if [ "$1" ]; then
92d104be8127 <ais523> paste bin/log
HackBot
parents:
diff changeset
4 grep -P -i -- "$1" ????-??-??.txt | shuf -n 1
92d104be8127 <ais523> paste bin/log
HackBot
parents:
diff changeset
5 else
92d104be8127 <ais523> paste bin/log
HackBot
parents:
diff changeset
6 file=$(shuf -en 1 ????-??-??.txt)
92d104be8127 <ais523> paste bin/log
HackBot
parents:
diff changeset
7 echo "$file:$(shuf -n 1 $file)"
92d104be8127 <ais523> paste bin/log
HackBot
parents:
diff changeset
8 fi
92d104be8127 <ais523> paste bin/log
HackBot
parents:
diff changeset
9