ulimit -c unlimited./xxxx &
./xxxx > run.log 2>&1
会是什么原因
试了下应该会有的
[root@RHEL6A scripts]# ./s5.sh > run.log 2>&1
[root@RHEL6A scripts]# more run.log
ok
./s5.sh: line 2: abc: command not found
不会是你的脚本执行后本来就没输出?
ls -lrt /var/log/
看看最近修改的几个系统日志有没有什么相关提示信息在里面
有些命令的输出不能用STDOUT或STDERR重定向
#!/bin/bash
这样可以。
现在在命令行下:
echo "xxx" >> file 可以了
只是在脚本中:
./xxx >> file 2>&1 & 这样不行
./xxx >> file 也不行