Stop a program if it takes more than given time to execute

From Notes_Wiki
Revision as of 03:01, 24 March 2013 by Saurabh (talk | contribs) (Created page with "<yambe:breadcrumb>Server_administration_tips_and_tricks|Server administration tips and tricks</yambe:breadcrumb> =Stop a program if it takes more than given time to execute= ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

<yambe:breadcrumb>Server_administration_tips_and_tricks|Server administration tips and tricks</yambe:breadcrumb>

Stop a program if it takes more than given time to execute

Sometimes there is need of timing out a program and killing it, if it takes more than specified time to execute. To achieve this there is a command 'timeout' with following syntax:

timeout <time><unit> <command>

For example

timeout 5s sleep 10

would terminate the sleep program after 5 seconds.