#!/bin/sh

S=$(command -v gsleep||command -v sleep)
$S $1
expr "$1" \> "4" > /dev/null
if [ "$?" != "0" ]; then
	echo $1
	exit 1
else
	exit 0
fi
