aboutsummaryrefslogtreecommitdiffstats
path: root/README
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-11-27 08:40:36 +0100
committerMattias Andrée <maandree@operamail.com>2015-11-27 08:40:36 +0100
commitf0b437b4af7c026d0575f6bf067bc639dd465284 (patch)
tree2bc71cd3833deeb26b09ff1f0eb62c9fb500e1ba /README
parenttypo (diff)
downloadalarm-f0b437b4af7c026d0575f6bf067bc639dd465284.tar.gz
alarm-f0b437b4af7c026d0575f6bf067bc639dd465284.tar.bz2
alarm-f0b437b4af7c026d0575f6bf067bc639dd465284.tar.xz
update readme
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'README')
-rw-r--r--README30
1 files changed, 21 insertions, 9 deletions
diff --git a/README b/README
index 7ea3fb3..92848e7 100644
--- a/README
+++ b/README
@@ -1,15 +1,27 @@
-Schedule an alarm for a program when starting it.
+NAME
+ alarm - Schedule an alarm for a program when starting it
+SYNOPSIS
+ alarm DURATION COMMAND [ARGS...]
-USAGE: alarm <TIME> <COMMAND> <ARGS...>
+DESCRIPTION
+ Schedules an alarm(3) to best triggered after a specified
+ DURATION. The process than execvp(3) into COMMAND ARGS.
-Recognised patterns for <TIME>:
+ This means that COMMAND will be killed by SIGALRM after
+ a selected DURATION.
- <SECONDS>[s]
- <MINUTES>m[<SECONDS>s]
- <HOURS>h[<MINUTES>m][<SECONDS>s]
+ DURATION must be a non-negative integer, no larger
+ than 18h12m15s. Recognised patterns for DURATION are:
+ * SECONDS[s]
+ * MINUTESm[SECONDSs]
+ * HOURSh[MINUTESm][SECONDSs]
- All values are non-negative integers, and
- the interval must be greater than zero and
- at most 18h12m15s.
+RATIONALE
+ This program is useful when testing programs for a limited
+ duration. Especially when running in the background, or
+ there is a chance of it locking the computer.
+
+SEE ALSO
+ alarm(3)