#!/bin/sh # small usleep - sleep wrapper for Debian systems # This tool needs "bc" installed # # by Alexander Griesser , 2008-02-10 if [ "$#" != "1" ]; then echo "usage: $(basename $0) time_in_usecs" exit 1 fi sleep $(echo "scale=1; $1 / 1000000" | bc)