[Solved] How to Redirect Output To Log File?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers [Solved] How to Redirect Output To Log File?
# 1  
Old 03-03-2014
[Solved] How to Redirect Output To Log File?

I have the below script, but when i execute it is still printing to screen is there a way i can stop this and just print everything to the log file. Thank you.

Code:
#!/bin/bash
exec > >(tee "/var/log/ScriptLogs/called_from_incrontab.log") 2>&1

DIR="$1"
FILE="$2"

echo "STEP 1: Datafile Transmitted: "$2", DataFile Input Folder: "$1""

EXT="${FILE##*.}"

echo "STEP 2: Extension Of The Input Data File: "$EXT""

if [ "$EXT" = "filepart" ]
then
        FILE="${FILE%.*}"
else
        FILE="$2"
fi

echo "STEP 3: Directory: "$DIR"  DataFile: "$FILE" Submitted Into FIFO"
##echo "$DIR" "$FILE" > /usr/local/fifo/dwdev_fifo

Moderator's Comments:
Mod Comment Please use CODE tags (not HTML tags) when posting sample code.

Last edited by Don Cragun; 03-03-2014 at 03:26 PM.. Reason: Fix tags.
# 2  
Old 03-03-2014
Hello,

If you want everything to be printed to a file, please use redirect >> command after each echo command.

Like for example as follows.

Code:
echo "STEP 1: Datafile Transmitted: "$2", DataFile Input Folder: "$1"" >> OUTPUT_file


Thanks,
R. Singh
# 3  
Old 03-03-2014
Quote:
Originally Posted by RavinderSingh13
Hello,

If you want everything to be printed to a file, please use redirect >> command after each echo command.

Like for example as follows.

Code:
echo "STEP 1: Datafile Transmitted: "$2", DataFile Input Folder: "$1"" >> OUTPUT_file


Thanks,
R. Singh
I understand that redirection & appending, but instead of that can i do any modifications to the below line, so that even the echo commands after that would just print to the same log file.

exec > >(tee "/var/log/ScriptLogs/called_from_incrontab.log") 2>&1
# 4  
Old 03-03-2014
Change:
Code:
exec > >(tee "/var/log/ScriptLogs/called_from_incrontab.log") 2>&1

to:
Code:
exec > "/var/log/ScriptLogs/called_from_incrontab.log" 2>&1

This User Gave Thanks to Don Cragun For This Post:
# 5  
Old 03-03-2014
Quote:
Originally Posted by Don Cragun
Change:
Code:
exec > >(tee "/var/log/ScriptLogs/called_from_incrontab.log") 2>&1

to:
Code:
exec > "/var/log/ScriptLogs/called_from_incrontab.log" 2>&1

Thank you it worked, i guess the first one with 2 redirection arrows would print the same output to stdout also puts into the log file and second one with only one redirection arrow just populates the log file.
# 6  
Old 03-03-2014
Code:
exec > file

says put standard output from the remainder of this script into file.
Code:
exec > file 2>&1

says put standard output from the remainder of the script into file and put standard error output from the remainder of this script into the same file that gets the output directed to standard output. (So, both normal output and diagnostic messages will go into your log file.)
This User Gave Thanks to Don Cragun For This Post:
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Redirect the output of the telnet to a file

Hi, I am using cygwin. Below is my script that reads all ip ports for iplist.txt and telnets to it. ( file="iplist.txt" while read line do echo $line echo $(telnet $line) done <"$file" ) > output2.txt ~ while the output2.txt gets the first echo but does not show the second... (2 Replies)
Discussion started by: mohtashims
2 Replies

2. Shell Programming and Scripting

Redirect script output to a file and mail the output

Hi Guys, I want to redirect the output of 3 scripts to a file and then mail the output of those three scripts. I used below but it is not working: OFILE=/home/home1/report1 echo "report1 details" > $OFILE =/home/home1/1.sh > $OFILE echo... (7 Replies)
Discussion started by: Vivekit82
7 Replies

3. Shell Programming and Scripting

script to mail monitoring output if required or redirect output to log file

Below script perfectly works, giving below mail output. BUT, I want to make the script mail only if there are any D-Defined/T-Transition/B-Broken State WPARs and also to copy the output generated during monitoring to a temporary log file, which gets cleaned up every week. Need suggestions. ... (4 Replies)
Discussion started by: aix_admin_007
4 Replies

4. Shell Programming and Scripting

Redirect the output in a file and on screen

I am trying to get following result from the scipt I have. First time it generates the o/p in correct format. However if I run it again it appends to the existing file. I would like to see o/p on screen as well as save it in file. Everytime it should create new file. ## I/P file 0174 0175... (3 Replies)
Discussion started by: dynamax
3 Replies

5. Shell Programming and Scripting

How to redirect output of ls to a file?

Hi All, I want to redirect only the file names to a new file from the ls -ltr directroy. how Can i do it. my ls -ltr output will be as below. -rwxr-xr-x 1 118 103 28295 Jul 26 2006 event.podl -rwxr-xr-x 1 118 103 28295 Jul 26 2006 xyz.podl I want my new file... (6 Replies)
Discussion started by: girish.raos
6 Replies

6. UNIX for Dummies Questions & Answers

redirect output into the middle of a file

If I want to cat one file and have the output inserted into a specific place on another file, how is this done? I know how to append >> and to overwrite > but say I have a file with: File1: abc def ghi jkl And a File with: File2: mno pqr stu vwx And I want to place the... (5 Replies)
Discussion started by: glev2005
5 Replies

7. UNIX for Dummies Questions & Answers

redirect output to a file name

Hi all!! is possible to assign the output of some command to filename, i.e. grep_output.txt Otherwise, I want to open a new file which name is inside another, how can I do it? Thanks a lot! (7 Replies)
Discussion started by: csecnarf
7 Replies

8. Shell Programming and Scripting

redirect output to log file

hello all, I'm invoking the program generate-report using backticks from my perl program and redirecting the output to the log file sge-stderr.log. But when i check the process using ps command it is spawing two processes where the below code is parent process and the program generate-report as... (2 Replies)
Discussion started by: kalyanraj
2 Replies

9. UNIX for Dummies Questions & Answers

Redirect output to a file

Ahhhrrrggg I'm having a brain fart... I want to take the output of a command and redirect it to a file... This works.... $ man cp | cat >> copy_help but this doesn't keytool -help |cat >> keytool_help It just produces... these lines... more keytool_help ] ... ... (11 Replies)
Discussion started by: jimmyc
11 Replies

10. Shell Programming and Scripting

redirect output to file?

Hi: I am currently working on a program which requires direct its ouput to a file here is an example ./proram arg_1 arg_2 when program ends all output will be arg_2 file Is that possible I am not a bad programmer, However I am stuck there. Can anyone give a hint? Thanks SW (1 Reply)
Discussion started by: slackware
1 Replies
Login or Register to Ask a Question