1
0
Fork 0
mirror of https://github.com/kastdeur/dotfiles.git synced 2025-05-14 20:09:26 +02:00

Need to work on install script

This commit is contained in:
Eric Teunis de Boone 2016-09-21 01:22:14 +02:00
commit 0fd6e855bf
14 changed files with 202 additions and 0 deletions

11
bin/queue Executable file
View file

@ -0,0 +1,11 @@
#!/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