initial commit

This commit is contained in:
Christoffer Müller Madsen 2016-03-30 21:24:57 +02:00
commit b3ee40504d

10
sleepsort Executable file
View File

@ -0,0 +1,10 @@
function sleepsort {
sleep $1
echo $1
}
for elem in "$@"
do
sleepsort ${elem} &
done
wait