- 论坛徽章:
- 0
|
test脚本如下:
#!/bin/bash
trap "echo 'The signal is SIGALRM, get signal from test2'" SIGALRM
while true; do
sleep 10
pid=$(ps -ef | grep "test2$" | grep -v grep | awk '{print $2}')
echo "send a SIGALRM to process \"test2($pid)\""
kill -SIGALRM $pid > /dev/null
done
test2的脚本如下:
#!/bin/bash
trap "echo 'get signal SIGALRM from test'" SIGALRM
while true; do
sleep 10
pid=$(ps -ef | grep "test$" | grep -v grep | awk '{print $2}')
echo "send a SIGALRM to process \"test($pid)\""
kill -SIGALRM $pid > /dev/null
done
然后分别在终端执行他们,结果老是报这样的错误:
send a SIGALRM to process "test2(6815)"
test: line 8: kill: SIGALRM: invalid signal specification
就是红色的那两个kill执行有问题,
假设test进程的PID是5678
kill -SIGALRM 5678没有任何问题,
而且,还能够输出:The signal is SIGALRM, get signal from test2'
可是这个语句在脚本中执行就老是报措。
[ 本帖最后由 dreamping 于 2006-12-29 09:28 编辑 ] |
|