码迷,mamicode.com
首页 > 系统相关 > 详细

shell exec命令执行shell打印输出到一个文件

时间:2018-06-10 00:34:24      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:code   命令执行   /tmp   not found   执行   utc   TE   命令   and   

[root@master ~]# cat 1.sh 
#!/bin/bash

exec 1>> /tmp/2.log 2>>/tmp/2.log
date 
echo 111
ldkkdfkslfds
date
[root@master ~]# ./1.sh 
[root@master ~]# cat /tmp/2.log 
Sat Jun  9 15:08:19 UTC 2018
111
./1.sh: line 6: ldkkdfkslfds: command not found
Sat Jun  9 15:08:19 UTC 2018
Sat Jun  9 15:10:39 UTC 2018
111
./1.sh: line 6: ldkkdfkslfds: command not found
Sat Jun  9 15:10:39 UTC 2018

 

shell exec命令执行shell打印输出到一个文件

标签:code   命令执行   /tmp   not found   执行   utc   TE   命令   and   

原文地址:https://www.cnblogs.com/weifeng1463/p/9161714.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!