当前位置:Linux教程 - Shell - shell - 重定向

shell - 重定向

重定向
2004-04-23 15:18 pm
来自:Linux文档
现载:Www.8s8s.coM
地址:无名

我用time ps -ef|grep ora_smon* >>abc想把进程用的时间输入到abc中,但结果是把ps -ef|grep ora_smon*的结果输入到abc,时间却没进来,我该怎么写?


DATE=`date`
PSSTR=`ps -ef|grep ora_smon`
echo "${DATE} ${PSSTR}" >>abc

你的意思是想看看进程执行了多少时间吧?
那不如这样:
date
yourprocess
date


这样看一下:(time ps -ef|grep ora_smon*) 2>abc
原来的写法ps -ef|grep ora_smon* >>abc ,ps后的部分被看成是time的参数.另外,time的输出是到标准错误的.