Jul 8, 2004 #1 mvrao18 Programmer Joined Jun 24, 2004 Messages 2 Location US ${SCRIPTS_DIR}venky_script >${LOGS_DIR}${BASE_JOB_NAME}.log 2>&1
Jul 8, 2004 #2 nawlej Programmer Joined Mar 26, 2004 Messages 380 Location US lets break it down: run this script ${SCRIPTS_DIR}venky_script pipe the output to this file: >${LOGS_DIR}${BASE_JOB_NAME}.log take your standard error and pipe it to standard output..... 2>&1 ___________________________________ [morse]--... ...--[/morse], Eric. Upvote 0 Downvote
lets break it down: run this script ${SCRIPTS_DIR}venky_script pipe the output to this file: >${LOGS_DIR}${BASE_JOB_NAME}.log take your standard error and pipe it to standard output..... 2>&1 ___________________________________ [morse]--... ...--[/morse], Eric.