Understanding the output command


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Understanding the output command
# 1  
Old 01-12-2010
Understanding the output command

Could you please explain me whats happening in the below code, appreciate your help, Thank you.


Code:
/product/apps/informatica/v7/pc/ExtProc/NewDAC/dacRecBuilder.sh 
/product/apps/informatica/v7/pc/TgtFiles/NEW_DAC/DAC_Pos_TradeInv_Records.out 
/product/apps/informatica/v7/pc/TgtFiles/NEW_DAC/DAC_Pos_Gen.txt  
/product/apps/informatica/v7/pc/TgtFiles/NEW_DAC/DAC_Pos_TradeInvPositions.txt >
/product/apps/informatica/v7/pc/ScriptLogs/DAC_POS_TradeInv_Records.log 2>&1

# 2  
Old 01-12-2010
Quote:
Originally Posted by Ariean
Could you please explain me whats happening in the below code, appreciate your help, Thank you.


Code:
/product/apps/informatica/v7/pc/ExtProc/NewDAC/dacRecBuilder.sh \
        /product/apps/informatica/v7/pc/TgtFiles/NEW_DAC/DAC_Pos_TradeInv_Records.out \
        /product/apps/informatica/v7/pc/TgtFiles/NEW_DAC/DAC_Pos_Gen.txt \
        /product/apps/informatica/v7/pc/TgtFiles/NEW_DAC/DAC_Pos_TradeInvPositions.txt \
        > /product/apps/informatica/v7/pc/ScriptLogs/DAC_POS_TradeInv_Records.log 2>&1

That looks like one big line that's been wrapped across multiple lines. I've added backslashes and indentation to make it more apparent. It runs dacRedBuilder.sh, giving it several filenames as parameters, redirecting its standard output to a file(highlighted in red), and redirecting its standard error into standard output(blue).

What the script actually does to all those files, I have no idea. I can't read the script from here. Smilie
# 3  
Old 01-12-2010
Thanks for your reply, okay my understanding from your comments is that the output of the shell script would be written to a file and when you say "standard output(blue)." does you mean to say that it would print the same content on the putty screen also when you execute the script in putty apart from the creation of output file??

Thanks,
Ariean
# 4  
Old 01-12-2010
Quote:
Originally Posted by Ariean
Thanks for your reply, okay my understanding from your comments is that the output of the shell script would be written to a file and when you say "standard output(blue)." does you mean to say that it would print the same content on the putty screen also when you execute the script in putty apart from the creation of output file??

Thanks,
Ariean
No, standard output is by default to screen. But here it is redirected to the file: DAC_POS_TradeInv_Records.log , also the standard error is also redirected to same file, so you will not get anything printed in the screen.
# 5  
Old 01-13-2010
I am missing something what do u mean by standard error? i understand standard output is the output printed on screen when i execute the script. But i didn't understand "2>&1" part, whats happening over there?

Thanks,
Ariean
# 6  
Old 01-13-2010
Quote:
Originally Posted by Ariean
I am missing something what do u mean by standard error? i understand standard output is the output printed on screen when i execute the script. But i didn't understand "2>&1" part, whats happening over there?

Thanks,
Ariean
By tradition, a UNIX process has three default streams: standard input(stdin), standard output(stdout), and standard error(stderr). stdin is represents the terminal keyboard as file descriptor 0, stdout represents the terminal screen as file descriptor 1, and stderr is also directed to the terminal screen as file descriptor 2.

The idea with having two files going to the terminal is to keep data and error messages separate. You can redirect the data output of a process into a file and still see human-readable error messages on your terminal. It also helps keep error messages OUT of data files since other programs probably won't need or understand them.

Here they're redirecting both stdout and stderr into the data file, for better or for worse. The "2>&1" bit tells it to redirect FD 2, stderr, to the same destination as FD 1, stdout.
This User Gave Thanks to Corona688 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

Insert title as output of command to appended file if no output from command

I am using UNIX to create a script on our system. I have setup my commands to append their output to an outage file. However, some of the commands return no output and so I would like something to take their place. What I need The following command is placed at the prompt: TICLI... (4 Replies)
Discussion started by: jbrass
4 Replies

2. UNIX for Advanced & Expert Users

Understanding output of "last" command

Hello, Been looking through Google, and I don't see a direct answer to this: # last ... abcd pts/1 srever02 Mon Feb 23 07:56 - 07:56 (00:00) abcd sshd server02 Mon Feb 23 07:56 - 07:56 (00:00) klmn sshd ... (2 Replies)
Discussion started by: kitykitykity
2 Replies

3. Red Hat

Command understanding the output file destination in case of standard output!!!!!

I ran the following command. cat abc.c > abc.c I got message the following message from command cat: cat: abc.c : input file is same as the output file How the command came to know of the destination file name as the command is sending output to standard file. (3 Replies)
Discussion started by: ravisingh
3 Replies

4. Shell Programming and Scripting

Understanding the output of fwtmp

Hi all, First time post, so please be gentle. :) I'm writing a Solaris 10 ksh script to retrieve details of logins and logouts using specific user names. The details I want are quite basic - the username, the computer logged in from, and the date and time the user logged in and logged off.... (6 Replies)
Discussion started by: confusedAdmin
6 Replies

5. UNIX for Dummies Questions & Answers

Understanding nm command output

After running nm command on any object file from out put can we get to know that wheather a symbol is a call to a function or definition of function ? I am searching a class and function definitions inside many .so files. I have 3 files which contain the symbol but I don't know wheather they... (2 Replies)
Discussion started by: yatrik007
2 Replies

6. Solaris

Understanding 'du' command

Hi I have a questions related 2 commands : 'du' and 'ls'. Why is the difference between output of 'du' and 'ls' cmd's ? Command 'du' : ------------------ jakubn@server1 /home/jakubn $ du -s * 4 engine.ksh 1331 scripts 'du -s *' ---> shows block count size on disk (512 Bytes... (5 Replies)
Discussion started by: presul
5 Replies

7. Shell Programming and Scripting

Understanding the output of TOP

ok, so I have a script im running on a linux box that uses "egrep" a lot. now, when i run this script, i check the TOP to see how much system resource it is using. the "top" command gives the following output: last pid: 25384; load avg: 1.06, 1.04, 0.76; up 351+06:30:24 ... (0 Replies)
Discussion started by: SkySmart
0 Replies

8. Shell Programming and Scripting

understanding mv command

hi i was moving a file from one directory to another with the following cmmand mv /home/hsghh/dfd/parent/file.txt . while doing so i i accidently mv /home/hsghh/dfd/dfd . although i gave ctrl c and terminate the move command some of the file are missing in the parent directory and... (1 Reply)
Discussion started by: saravanan71184
1 Replies

9. UNIX for Dummies Questions & Answers

Help Understanding Output and question about /dev/

Hi, I am having some problems understanding the info from the following output: Disk /dev/sda: 17849 cylinders, 255 heads, 63 sectors/track Units = cylinders of 8225280 bytes, blocks of 1024 bytes, counting from 0 Device Boot Start End #cyls #blocks Id System /dev/sda1 *... (5 Replies)
Discussion started by: mojoman
5 Replies

10. OS X (Apple)

Ifconfig output - help understanding flags 'Smart, Simplex', etc

Hi - Trying to understand a few things from an ifconfig -a output - can't seem to find info anywhere on the net. Specifically - looking to understand the following: Flags=8863 Smart Running (is this the same as UP) Simplex inet6 supported media: autoselect - does that imply the... (1 Reply)
Discussion started by: littlefrog
1 Replies
Login or Register to Ask a Question