-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
33 lines (22 loc) · 846 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
================
Monitcall README
================
Monitcall is a small script to run executeables and
watch for deadlocks in the process.
Usage: ::
monitcall [-h] [-a ARGS] [-t CYCLES] [-l LIMIT] [-s SIGNAL]
[-d DEBUGLOG] [-v] cmd
The script will call the given command (CMD) together with the
given arguments (ARGS). If the CPU usage of the command is higher
than the given limit (LIMIT) for more than CYCLES cycles
the command is killed with the signal SIGNAL.
Example:
========
To extract the contents of a MS-Word document `mydocument.doc` to
an utf-8 text printed on stdout call: ::
monitcall wvWare -a '-c utf-8 --nographics mydocument.doc'
Known issues:
=============
- The argument string must not start with `-a`. Like this: ::
... -a '-a 4 -c utf-8 ...'
This seems to be a bug in the argparse module