Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1 

2ARGS = (['args'], dict(action='store', nargs='*')) 

3 

4PROTO = (['-p', '--proto'], dict(help='Protocol',action='store',dest='proto')) 

5URI = (['-u', '--uri'], dict(help='Uri',action='store',dest='uri')) 

6PATH = (['-p', '--path'], dict(help='Path/s',action='store',dest='path')) 

7FILE = (['-f', '--file'], dict(help='File/s',action='store',dest='file')) 

8PID = (['-p', '--pid'], dict(help='Name/s',action='store',dest='pid', type=int)) 

9CMDLINE = (['-c', '--cmdline'], dict(help='Name/s',action='store',dest='cmdline')) 

10NAME = (['-n', '--name'], dict(help='Name/s',action='store',dest='name')) 

11ALIAS = (['-a', '--alias'], dict(help='Name/s', action='store', dest='alias')) 

12LABEL = (['-l', '--label'], dict(help='Name/s', action='store', dest='label')) 

13HOST = (['-h', '--host'], dict(help='Name/s',action='store',dest='host')) 

14STATE = (['--state'], dict(help='Name/s',action='store',dest='state')) 

15SHUTDOWN = (['-s', '--shutdown'], dict(help='Name/s',action='store',dest='shutdown', default=0, type=int)) 

16RESTART = (['-r', '--restart'], dict(help='Name/s',action='store',dest='restart', default=1, type=int)) 

17PARENT = (['-p', '--parent'], dict(help='Parent name/s',action='store',dest='parent')) 

18CHILD = (['-c', '--child'], dict(help='Child name/s',action='store',dest='child')) 

19CONDITION = (['-c', '--condition'], dict(help='Condition to be evaluated', action='store', dest='condition')) 

20TIMEOUT = (['-t', '--timeout'], dict(help='Timeout for operation', action='store', dest='timeout', default=0, type=float)) 

21 

22