Skip to content

Instantly share code, notes, and snippets.

View andrewh's full-sized avatar
🛀
Overthinking

Andrew Hodgson andrewh

🛀
Overthinking
View GitHub Profile
@andrewh
andrewh / primes.sh
Last active April 13, 2016 14:56
Prints the distribution of primes in the terminal using OpenSSL
#!/bin/sh
die () {
echo $1
exit $2
}
red () {
if [ -x $(which tput) ]; then
tput setaf 1