#!/bin/sh

if which fortune > /dev/null 2>&1; then
    fortune
else
    uptime
    free
fi
