Guys,
I have successfully coded the shell script output to a logfile:
LOG_DIR = /xxx/yyy
exec 1>$LOG_DIR/script_name/$(date +%Y%m%d%H%M).log
This script performs several functions. Mainly inserting data into several Oracle tables. This takes time. I want to see these two things happen. A or B or BOTH
a) Beside stdout to LOG_DIR i also want to see the output on the screen. Reason: At least i will know when this thing ended.
b) Script tells me when it ended something echo on the screen.
Can someone help?
Al
I have successfully coded the shell script output to a logfile:
LOG_DIR = /xxx/yyy
exec 1>$LOG_DIR/script_name/$(date +%Y%m%d%H%M).log
This script performs several functions. Mainly inserting data into several Oracle tables. This takes time. I want to see these two things happen. A or B or BOTH
a) Beside stdout to LOG_DIR i also want to see the output on the screen. Reason: At least i will know when this thing ended.
b) Script tells me when it ended something echo on the screen.
Can someone help?
Al