Questions about file descriptors


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Questions about file descriptors
# 1  
Old 09-17-2014
Questions about file descriptors

Hi, I'm playing with KSH

I entered following command in terminal

Code:
{ echo "stdout" >&1; echo "stderr" >&2; } > out

And I get only stoud in a new file out.

My question is: Where did my stderr vanish ?
# 2  
Old 09-17-2014
Hi,

Have a look at "syslog.conf" file and check where it goes.

Traditiionally "stderr" defaults to the user output (screen) - it could have changed in Solaris 11.2 - but I'd be really surprised. You are looking for lines in the syslog.conf that will say something like.

Code:
user.err                                        /dev/sysmsg
user.err                                        /var/adm/messages
user.alert                                      `root, operator'
user.emerg                                      *

Regards

Dave
This User Gave Thanks to gull04 For This Post:
# 3  
Old 09-17-2014
Hi gull04,
Settings in syslog.conf affect where messages printed by syslog go; not where messages printed by echo go.

Hi solaris_user,
From what you have shown us, the word stdout should have appeared in the file named out and the word stderr should have appeared on your terminal's screen unless you had an earlier exec statement in your shell redirecting file descriptor 2 to another file or you redirected the file descriptor 2 output of the shell script containing the statements you showed us to another file.

If you wanted both stdout and stderr from your subshell to be saved in the file named out you would need soething like:
Code:
{ echo "stdout" >&1; echo "stderr" >&2; } 2>&1 > out

I assume that you already know that >&1 is shorthand notation for 1>&1 which redirects the output directed to file descriptor 1 to be written to file descriptor 1 (which is a no-op), so the code shown in red above can be deleted without affecting the results.
This User Gave Thanks to Don Cragun For This Post:
# 4  
Old 09-17-2014
Hi Don, thanks for clear explanation. I didn't know for that shorthand.
So when I do something like

Code:
ls -al > mylist

Shell that interprets like

Code:
ls -al 1> mylist

Is this correct ?
# 5  
Old 09-17-2014
Yes. Look at the ksh man page for redirections.
# 6  
Old 09-17-2014
When you use set -x to trace command execution with ksh, it also shows redirections, for example:
Code:
ls -al > list
+ ls -al
+ 1> list

Unfortunately, bash doesn't seem to trace redirections (even when the redirection includes variable expansions).
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Semaphores and File Descriptors

What is the difference between a file descriptor and a semaphore? My basic understanding is: - a file descriptor is a small positive integer that the system uses instead of the file name to identify an open file or socket. - a semaphore is a variable with a value that indicates the... (1 Reply)
Discussion started by: Mr_Webster
1 Replies

2. HP-UX

exec and file descriptors

Hi, I speak and write english more or less, so I hope my asking be clear. :) In the company I am working, they are using control-m software to lunch shell scripts. So i put this command in all shell scripts: export LOGFILE_tmp=$PRODUC_DATA/tmp/${SCRIPT}_${PAIS}_`date... (0 Replies)
Discussion started by: anamcara
0 Replies

3. UNIX for Dummies Questions & Answers

Using File Descriptors, traverse a list

I have written this code, and according to my research it SHOULD be going down the list until it is finished, but I am getting blank feedback. Nothing is being output as far as I can tell. #!/bin/sh while echo Enter to start traversing read enter do read list <&3 echo $list done any... (2 Replies)
Discussion started by: MaestroRage
2 Replies

4. UNIX for Advanced & Expert Users

File Descriptors + cron

Hi All, This thread is going to be a discussion basically bringing out more information from the experts on cron jobs and the associated file handles. So, here is the question. There is definitely a constant ' n ' as the maximum number of file handles alloted to a process ' p '. Will... (7 Replies)
Discussion started by: matrixmadhan
7 Replies

5. UNIX for Advanced & Expert Users

File descriptors missing on startup

Dec 20 15:34:32 hostname sendmail: File descriptors missing on startup: stderr; Bad file number Dec 20 15:34:32 hostname sendmail: File descriptors missing on startup: stderr; Bad file number Dec 20 15:34:32 hostname sendmail: File descriptors missing on startup: stderr; Bad file number Dec... (1 Reply)
Discussion started by: xnightcrawl
1 Replies

6. Programming

Sockets and File descriptors

I am in a Systems programming class this semester, and our current project is to write a program utilizing sockets and fork. For the project, I decided to make my own instant messaging program. I have the code completed, but I have a problem that keeps old clients from communicating with new... (3 Replies)
Discussion started by: gstlouis
3 Replies

7. Shell Programming and Scripting

Multiple co-processor file descriptors

I have a script that creates a KSH co-process for Oracle sqlplus and I am presently interacting with it via print -p and read -p. I also need to interact with another Oracle database what isn't permitted to have any direct connection to the first. Presently, I simply disconnect from the first... (10 Replies)
Discussion started by: tmarikle
10 Replies

8. UNIX for Dummies Questions & Answers

file descriptors

i m trying to learn processes in unix and i've been reading this but i don't quite get it. its regarding file descriptors. : each is a part of file pointers, they point to another area. indexes into an Operating system maintained table called "file descriptor table". one table per process. may... (3 Replies)
Discussion started by: a25khan
3 Replies

9. UNIX for Advanced & Expert Users

File Descriptors

Hello all, A few questions on file descriptors ... scenario : Sun Ultra 30 with Sun OS 5.5.1 , E250 with Solaris 2.6 In one of my servers, the file descriptor status from the soft limit and hard limits are 64 and 1024 respectively for root user. Is the soft limit (64) represents the... (3 Replies)
Discussion started by: shibz
3 Replies

10. Programming

File Descriptors

Hi, I have written a daemon process, to perform certain operations in the background. For this I have to close, the open file descriptors, Does anybody know how to find out the number of open file descriptors ? Thanks in Advance, Sheetal (2 Replies)
Discussion started by: s_chordia
2 Replies
Login or Register to Ask a Question