dotfiles/bin/queue

12 lines
179 B
Plaintext
Raw Permalink Normal View History

2016-09-21 01:22:14 +02:00
#!/bin/sh
LIST=""
for arg in $@; do
if [ -f "$arg" ]; then
LIST="$LIST"$'\n'"$(cat "$arg")"
else
LIST="$LIST"$'\n'"$arg"
fi
done;
echo "$LIST" | shuf | marietje
unset LIST