comparison bin/pastelog... @ 2257:5c453217583b

<Jafet> sed -i... -e \'s/grep/timeout 25 grep/\' bin/pastelog
author HackBot
date Tue, 26 Feb 2013 18:01:53 +0000
parents
children
comparison
equal deleted inserted replaced
2256:b2cc3747ec36 2257:5c453217583b
1 #!/bin/sh
2 cd /var/irclogs/_esoteric
3
4 pasterandom() {
5 if [ "$1" -gt 150 ]; then
6 echo "No."
7 exit
8 fi
9 for i in $(seq "$1"); do
10 file=$(shuf -en 1 ????-??-??.txt)
11 echo "$file:$(shuf -n 1 $file)"
12 done | paste
13 }
14
15 if [ "$1" ]; then
16 if expr "$1" + 0 >/dev/null 2>&1; then
17 pasterandom "$1"
18 else
19 lines=$(grep -P -i -- "$1" ????-??-??.txt | head -n 301)
20 {
21 echo "$lines" | head -n 300
22 [ $(echo "$lines" | wc -l) -eq 301 ] && echo "[too many lines; stopping]"
23 } | paste
24 fi
25 else
26 pasterandom 40
27 fi
28