sleep is a very popular command and we can start sleep from 1 second:
# wait one second please
sleep 1
but what the alternative if I need to wait only 0.1 second or between 0.1 to 1 second ?
- remark: on linux or OS X
sleep 0.XXX
works fine , but on solarissleep 0.1
orsleep 0.01
- illegal syntax