Skip to content
Sections
>> Trisquel >> Packages >> aramo >> utils >> sleepenh
etiona  ] [  nabia  ] [  aramo  ]
[ Source: sleepenh  ]

Package: sleepenh (1.7-1)

Sleep until a given date with subsecond resolution

sleepenh is a sleep program for shell scripts that need to perform a loop that repeats at a regular time interval, without cumulative errors.

It supports microsecond resolution.

You can also specify the time you need between two calls of sleepenh.

Here follows an usage example to clarify its purpose. This example sends 'A' to ttyS0 every 1.2 seconds.

  #!/bin/sh
  # does not wait (or wait 0), just to get initial timestamp
  TIMESTAMP=$(sleepenh 0)
  while true; do
    # send the byte to ttyS0
    echo -n "A" > /dev/ttyS0;
    # wait until the required time
    TIMESTAMP=$(sleepenh $TIMESTAMP 1.200);
  done

For more details, please read the manpage.

Other Packages Related to sleepenh

  • depends
  • recommends
  • suggests
  • dep: libc6 (>= 2.17) [arm64, ppc64el]
    GNU C Library: Shared libraries
    also a virtual package provided by libc6-udeb
    dep: libc6 (>= 2.4) [amd64, armhf]

Download sleepenh

Download for all available architectures
Architecture Package Size Installed Size Files
amd64 8.1 kB29 kB [list of files]
arm64 8.1 kB25 kB [list of files]
armhf 8.1 kB25 kB [list of files]
ppc64el 8.7 kB82 kB [list of files]