pastebin - collaborative debugging tool
rovema.kpaste.net RSS


busysleep.sh
Posted by Anonymous on Mon 26th Jul 2021 15:08
raw | new post
modification of post by Anonymous (view diff)

  1. #!/bin/bash
  2. # (bash4 or ksh93)
  3.  
  4. #
  5. # busysleep.sh
  6. #
  7. # like POSIX sleep(1), but uses CPU time
  8.  
  9. set -o errexit
  10.  
  11. typeset -i start_s
  12. typeset -i sleep_time=$1
  13.  
  14. for ((start_s=SECONDS ;
  15.         (SECONDS-start_s) <= sleep_time ;
  16.         )) ; do
  17.         (( 1 ))
  18. done
  19.  
  20. exit 0

Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at