Skip to content

Instantly share code, notes, and snippets.

@10maurycy10
Created February 7, 2021 18:50
Show Gist options
  • Save 10maurycy10/64ba07f7520bae022fabdc8abfa5d05f to your computer and use it in GitHub Desktop.
Save 10maurycy10/64ba07f7520bae022fabdc8abfa5d05f to your computer and use it in GitHub Desktop.
a O(n) sorting algo
#!/bin/bash
#sleep sort
function f() {
sleep "$1"
echo "$1"
}
while [ -n "$1" ]
do
f "$1"&
shift
done
wait
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment