博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
为程序设置超时
阅读量:6008 次
发布时间:2019-06-20

本文共 1567 字,大约阅读时间需要 5 分钟。

timeout 是个奇妙的Linux命令,它可以控制程序运行的时间,这对于我们希望控制程序的运行时间非常有用。

timeout在CentOS 6平台上,从属于软件包coreutils

1
2
3
4
# which timeout
/usr/bin/timeout
# rpm -qf /usr/bin/timeout
coreutils-8.4-19.el6_4.2.x86_64

timeout的原理很简单,一个简单的计时器,一个kill命令,其中-s 可以跟kill的参数,具体怎么杀,就看它。

man timeout仅仅半页,如下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
TIMEOUT(1)                       User Commands                      TIMEOUT(1)
NAME
       
timeout - run a 
command 
with a 
time 
limit
SYNOPSIS
       
timeout [OPTION] NUMBER[SUFFIX] COMMAND [ARG]...
       
timeout [OPTION]
DESCRIPTION
       
Start  COMMAND,  and 
kill 
it 
if 
still running after NUMBER seconds.  SUFFIX may be ‘s’ 
for 
seconds (the default), ‘m’ 
for 
minutes, ‘h’
       
for 
hours or ‘d’ 
for 
days.
       
Mandatory arguments to long options are mandatory 
for 
short options too.
       
-s, --signal=SIGNAL
              
specify the signal to be sent on timeout.  SIGNAL may be a name like ‘HUP’ or a number.  See ‘
kill 
-l‘ 
for 
a list of signals
       
--help display this help and 
exit
       
--version
              
output version information and 
exit
       
If the 
command 
times 
out, 
then 
exit 
with status 124.  Otherwise, 
exit 
with the status of COMMAND.  If no signal is specified, send the
       
TERM signal upon timeout.  The TERM signal kills any process that does not block or catch that signal.  For other processes, it may be
       
necessary to use the KILL (9) signal, since this signal cannot be caught.
AUTHOR
       
Written by Padraig Brady.

用法举例

1
timeout 120 
command

上面的command命令如果在120秒内完成,则平安结束,运行超过120秒后将被杀死。

脚本经常是傻乎乎的一口气跑到完,搞得我们需要写另一个脚本定期去杀它。自打有了timeout命令,腰也不疼了,腿也不酸了,跑跑歇歇更健康。

一句话,我们在脚本里或者crontab里就不用再造轮子了。

本文转自 紫色葡萄 51CTO博客,原文链接:http://blog.51cto.com/purplegrape/1302902,如需转载请自行联系原作者
你可能感兴趣的文章
消息队列服务器 memcacheq的搭建
查看>>
hdu 1024 Max Sum Plus Plus 小白都可以看得懂的解析
查看>>
shell中常见参数及判断命令
查看>>
VMware Horizon View 7.5 虚拟桌面实施咨询与购买--软件硬件解决方案
查看>>
2018新版驾照驾照psd模板下载
查看>>
【矢量图控件教程】矢量图控件VectorDraw 常见问题整理大全(一)
查看>>
文件系统、服务、防火墙、SELINUX——安全四大金刚
查看>>
RabbitMQ如何保证队列里的消息99.99%被消费?
查看>>
Lync Server 2010的部署系列_第五章 准备 Active Directory 域服务
查看>>
java基本数据类型及运算符小结
查看>>
第一周博客作业
查看>>
Python strip lstrip rstrip使用方法
查看>>
Linux开发工具_1_gcc入门(上)
查看>>
在这里安家了
查看>>
ERP项目更应授人以渔
查看>>
我的友情链接
查看>>
thinkpython2
查看>>
JDK、JRE和JVM的关系
查看>>
String、StringBuffer和StringBuilder的区别
查看>>
【原创】ObjectARX中的代理对象
查看>>