#!/usr/bin/env sh

# Linux

if [ "$(expr substr $(uname -s) 1 5)" = "Linux" ]
then

# Mac

elif [ "$(uname)" = "Darwin" ]
then

fi