diff options
author | Mattias Andrée <maandree@kth.se> | 2017-10-13 20:45:48 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2017-10-13 20:45:55 +0200 |
commit | db656c928524eed059ecf3d418efdea0d923072c (patch) | |
tree | 61615486d7225e3c7c369fbcb2e9c2f7d49104b0 /README | |
parent | update dist (diff) | |
download | alarm-db656c928524eed059ecf3d418efdea0d923072c.tar.gz alarm-db656c928524eed059ecf3d418efdea0d923072c.tar.bz2 alarm-db656c928524eed059ecf3d418efdea0d923072c.tar.xz |
Improve style and license
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'README')
-rw-r--r-- | README | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -2,20 +2,20 @@ NAME alarm - Schedule an alarm for a program when starting it SYNOPSIS - alarm DURATION COMMAND [ARGS...] + alarm duration command [argument...] DESCRIPTION Schedules an alarm(3) to best triggered after a specified - DURATION. The process than execvp(3) into COMMAND ARGS. + duration. The process than execvp(3) into command. - This means that COMMAND will be killed by SIGALRM after - a selected DURATION. + This means that command will be killed by SIGALRM after + a selected duration. - DURATION must be a non-negative integer, no larger - than 18h12m15s. Recognised patterns for DURATION are: - * SECONDS[s] - * MINUTESm[SECONDSs] - * HOURSh[MINUTESm][SECONDSs] + duration must be a non-negative integer, no larger + than 18h12m15s. Recognised patterns for duration are: + * seconds[s] + * minutesm[secondss] + * hoursh[minutesm][secondss] RATIONALE This program is useful when testing programs for a limited |