view bin/pastelog @ 12499:3810b2f1f7f0 draft default tip

<FireFly> ` grep -v FireFly /hackenv/bin/olist >/tmp/foo && cat /tmp/foo >/hackenv/bin/olist
author HackEso <hackeso@esolangs.org>
date Wed, 10 Apr 2024 14:45:21 +0000
parents 56dcce63901b
children
line wrap: on
line source

#!/bin/bash
cd /var/irclogs/_esoteric

pasterandom() {
    if [ "$1" -gt 150 ]; then
        echo "No."
        exit
    fi
    for i in $(seq "$1"); do
        file=$(shuf -en 1 ????-??-??.txt)
        echo "$file:$(shuf -n 1 $file)"
    done | paste
}

if [ "$1" ]; then
    if expr "$1" + 0 >/dev/null 2>&1; then
        pasterandom "$1"
    else
        lines=$(timeout 25 grep -P -i -- "$1" ????-??-??.txt | head -n 301)
        {
            echo "$lines" | head -n 300
            [ $(echo "$lines" | wc -l) -eq 301 ] && echo "[too many lines; stopping]"
        } | paste
    fi
else
    pasterandom 40
fi