由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 问个php的问题
相关主题
问个shell的问题Windows Shell/command for Briefcase?
how to program a shell extensionQuestions about MAKEFILE
[合集] 一个指针的小问题How to execute a shell command in java and display the output?
请问这是什么语法(C++)?怎么在c shell里给file加一行string?
VC6.0 补丁??[合集] Shell script problem?
printf的问题help for Shell script commands
请教MS的高手一个shell的问题android怎么写一个binary command? (转载)
标 题: 发包子 echo 求助在用C写shell,遇到问题
相关话题的讨论汇总
话题: echo话题: 执行话题: command话题: shell话题: 超时
进入Programming版参与讨论
1 (共1页)
c**t
发帖数: 2744
1
怎么控制下面语句的执行时间?超时就kill掉,接着执行后面的代码?
echo `shell_command_may_take_a_while`
c**t
发帖数: 2744
2
要是perl就简单,直接用signal就好了

【在 c**t 的大作中提到】
: 怎么控制下面语句的执行时间?超时就kill掉,接着执行后面的代码?
: echo `shell_command_may_take_a_while`

j*****o
发帖数: 320
3
看到这个:
http://us2.php.net/function.exec
Search "timeout"

怎么控制下面语句的执行时间?超时就kill掉,接着执行后面的代码?
echo `shell_command_may_take_a_while`

【在 c**t 的大作中提到】
: 怎么控制下面语句的执行时间?超时就kill掉,接着执行后面的代码?
: echo `shell_command_may_take_a_while`

c**t
发帖数: 2744
4
I think my solution is more elgant:
set_time_limit( $TIMEOUT_CONST );
...
try
{
echo `some_long_running_shell_Command`;
}
catch(Exception $e)
{
echo "Either timed out or failed to execute: ", $e->getMessage(), "\n";
}

看到这个:
http://us2.php.net/function.exec
Search "timeout"
怎么控制下面语句的执行时间?超时就kill掉,接着执行后面的代码?
echo `shell_command_may_take_a_while`

【在 j*****o 的大作中提到】
: 看到这个:
: http://us2.php.net/function.exec
: Search "timeout"
:
: 怎么控制下面语句的执行时间?超时就kill掉,接着执行后面的代码?
: echo `shell_command_may_take_a_while`

j*****o
发帖数: 320
5
Very nice.

【在 c**t 的大作中提到】
: I think my solution is more elgant:
: set_time_limit( $TIMEOUT_CONST );
: ...
: try
: {
: echo `some_long_running_shell_Command`;
: }
: catch(Exception $e)
: {
: echo "Either timed out or failed to execute: ", $e->getMessage(), "\n";

G*****m
发帖数: 5395
6
看成phd了...

怎么控制下面语句的执行时间?超时就kill掉,接着执行后面的代码?
echo `shell_command_may_take_a_while`

【在 c**t 的大作中提到】
: 怎么控制下面语句的执行时间?超时就kill掉,接着执行后面的代码?
: echo `shell_command_may_take_a_while`

1 (共1页)
进入Programming版参与讨论
相关主题
在用C写shell,遇到问题VC6.0 补丁??
是zsh吗?printf的问题
GPROF problem请教MS的高手一个shell的问题
问个C++的问题标 题: 发包子 echo 求助
问个shell的问题Windows Shell/command for Briefcase?
how to program a shell extensionQuestions about MAKEFILE
[合集] 一个指针的小问题How to execute a shell command in java and display the output?
请问这是什么语法(C++)?怎么在c shell里给file加一行string?
相关话题的讨论汇总
话题: echo话题: 执行话题: command话题: shell话题: 超时