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:
commit
0fd6e855bf
14 changed files with 202 additions and 0 deletions
11
bin/queue
Executable file
11
bin/queue
Executable 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
|
Loading…
Add table
Add a link
Reference in a new issue