打印shell脚本的控制台日志

时间:2017-04-04 03:13:50

标签: linux shell scripting

我有一个像下面这样的shell脚本。我想将控制台完整日志保存到文件中。

#!/bin/bash
#This script is to import tables from mysql to hdfs

source /home/$USER/source.sh

[ $# -ne 1 ] && { echo "Usage : $0 table ";exit 1; }

table=$1

TIMESTAMP=`date "+%Y-%m-%d"`
touch /home/$USER/logs/${TIMESTAMP}.success_log
touch /home/$USER/logs/${TIMESTAMP}.fail_log
success_logs=/home/$USER/logs/${TIMESTAMP}.success_log
failed_logs=/home/$USER/logs/${TIMESTAMP}.fail_log

#Function to get the status of the job creation
function log_status
{
status=$1
message=$2
if [ "$status" -ne 0 ]; then
echo "`date +\"%Y-%m-%d %H:%M:%S\"` [ERROR] $message [Status] $status : failed" | tee -a "${failed_logs}"
#echo "Please find the attached log file for more details"
exit 1
else
echo "`date +\"%Y-%m-%d %H:%M:%S\"` [INFO] $message [Status] $status : success" | tee -a "${success_logs}"
fi
}

`hive -e "create table test_1 as select * from db.test"`

g_STATUS=$?
log_status $g_STATUS "Table created ${table}"
echo "******************************************************************************"

运行脚本时日志仅显示作业是成​​功还是失败。如何将整个控制台日志保存到文件中。

如何将两个状态日志保存到一个文件,控制台记录到另一个文件

1 个答案:

答案 0 :(得分:1)

利用两个文件描述符,指向两个不同的文件,然后将相关日志重定向到所需的文件描述符。

例如,把它放在shebang之后:

exec 3>console.log
exec 4>status.log

现在,要将所有控制台日志发送到console.log,请执行:

echo .... >&3

同样,对于所有状态日志:

echo ... >&4

更改文件名以满足您的需要。