Sponsored Content
Full Discussion: >/dev/null
Top Forums UNIX for Dummies Questions & Answers >/dev/null Post 9447 by rwb1959 on Friday 26th of October 2001 05:46:39 PM
Old 10-26-2001
Try...

someprog > /dev/null 2>&1 &

...this will run "someprog" in the background with
stdout redirected to /dev/null and stderr redirected to
stdout (now /dev/null)
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

/dev/null

Hi , I am importing some table from /dev/null i dont understand what is /dev/null Sorry i am new to UNIX sam71 (3 Replies)
Discussion started by: sam71
3 Replies

2. UNIX for Advanced & Expert Users

Q1 :/dev/null Q2 -A

Hi, Q1-What does nroff -ms > /dev/null Q2- What does mean -A under STAT column : ps aux |head -20 UTIL PID %CPU %MEM SZ RSS TTY STAT STIME TIME COMMAND root 516 93,0 0,0 12 12 - A 04 nov 3906:51 wait Thank you. (4 Replies)
Discussion started by: big123456
4 Replies

3. Shell Programming and Scripting

> /dev/null

hello all, In many shell scripts i found '> /dev/null' , i am not able to get this, will any one please explain why we are using this. thanks sudha (2 Replies)
Discussion started by: rrs
2 Replies

4. Solaris

What is /dev/tty /dev/null and /dev/console

Hi, Anyone can help My solaris 8 system has the following /dev/null , /dev/tty and /dev/console All permission are lrwxrwxrwx Can this be change to a non-world write ?? any impact ?? (12 Replies)
Discussion started by: civic2005
12 Replies

5. Shell Programming and Scripting

/dev/null

Hi expert, May I know what is the difference between below cron tab entry ? 0,12 * * * * /abc/myscript.sh > /dev/null 2>&1 0,12 * * * * /abc/myscript.sh (7 Replies)
Discussion started by: olaris
7 Replies

6. Shell Programming and Scripting

/dev/null what is the use of it?

when do you use the path /dev/null (3 Replies)
Discussion started by: webmunkey23
3 Replies

7. UNIX for Dummies Questions & Answers

/dev/null 2>&1 Versus /dev/null 2>1

How are these two different? They both prevent output and error from being displayed. I don't see the use of the "&" echo "hello" > /dev/null 2>&1 echo "hello" > /dev/null 2>1 (3 Replies)
Discussion started by: glev2005
3 Replies

8. Shell Programming and Scripting

Redirecting standard out to /dev/null goes to file "/dev/null" instead

I apologize if this question has been answered else where or is too elementary. I ran across a KSH script (long unimportant story) that does this: if ; then CAS_SRC_LOG="/var/log/cas_src.log 2>&1" else CAS_SRC_LOG="/dev/null 2>&1" fithen does this: /usr/bin/echo "heartbeat:... (5 Replies)
Discussion started by: jbmorrisonjr
5 Replies

9. Shell Programming and Scripting

Help with /dev/null Please

Hello All and a Happy New year to yous guys. I'm running the below command on my AIX box and it keeps giving me the message that the file doesn't exist. I know the file don't exist, but I don't want to see the error. 2>/dev/null doesn't work. bash-3.00$ ls -l C* | wc -l 2>/dev/null ls:... (2 Replies)
Discussion started by: bbbngowc
2 Replies

10. Shell Programming and Scripting

2>/dev/null

Friends have the following problem a search may not find anything which would correct example: ls -ltr *prueba.txt | nawk '{ print $9 }' > Procesar.dat 2>/dev/null When he finds nothing gives me the following error ls: prueba.txt: No such file or directory because 2> / dev / null... (4 Replies)
Discussion started by: tricampeon81
4 Replies
GETTTYENT(3)						   BSD Library Functions Manual 					      GETTTYENT(3)

NAME
getttyent, getttynam, setttyent, setttyentpath, endttyent -- get ttys file entry LIBRARY
Standard C Library (libc, -lc) SYNOPSIS
#include <ttyent.h> struct ttyent * getttyent(); struct ttyent * getttynam(char *name); int setttyent(void); int setttyentpath(const char *path); int endttyent(void); DESCRIPTION
The getttyent(), and getttynam() functions each return a pointer to an object, with the following structure, containing the broken-out fields of a line from the tty description file. struct ttyent { char *ty_name; /* terminal device name */ char *ty_getty; /* command to execute */ char *ty_type; /* terminal type */ #define TTY_ON 0x01 /* enable logins */ #define TTY_SECURE 0x02 /* allow uid of 0 to login */ #define TTY_LOCAL 0x04 /* set 'CLOCAL' on open (dev. specific) */ #define TTY_RTSCTS 0x08 /* set 'CRTSCTS' on open (dev. specific) */ #define TTY_SOFTCAR 0x10 /* ignore hardware carrier (dev. spec.) */ #define TTY_MDMBUF 0x20 /* set 'MDMBUF' on open (dev. specific) */ #define TTY_DTRCTS 0x40 /* set 'CDTRCTS' on open (dev. specific) */ int ty_status; /* flag values */ char *ty_window; /* command for window manager */ char *ty_comment; /* comment field */ char *ty_class; /* category of tty usage */ }; The fields are as follows: ty_name The name of the character-special file. ty_getty The name of the command invoked by init(8) to initialize tty line characteristics. ty_type The name of the default terminal type connected to this tty line. ty_status A mask of bit fields which indicate various actions allowed on this tty line. The possible flags are as follows: TTY_ON Enables logins (i.e., init(8) will start the command referenced by ty_getty on this entry). TTY_SECURE Allow users with a uid of 0 to login on this terminal. TTY_LOCAL If the terminal port's driver supports it, cause the line to be treated as ``local.'' TTY_MDMBUF If the terminal port's driver supports it, use DTR/DCD hardware flow control on the line by default. TTY_RTSCTS If the terminal port's driver supports it, use full-duplex RTS/CTS hardware flow control on the line by default. TTY_SOFTCAR If the terminal port's driver supports it, ignore hardware carrier on the line. ty_window The command to execute for a window system associated with the line. ty_comment Any trailing comment field, with any leading hash marks (``#'') or whitespace removed. ty_class A key indexing into a termcap-style database (/etc/ttyclasses) of attributes for this class of tty. No attributes are currently defined or used, so there are currently no functions to retrieve them. If any of the fields pointing to character strings are unspecified, they are returned as null pointers. The field ty_status will be zero if no flag values are specified. See ttys(5) for a more complete discussion of the meaning and usage of the fields. The getttyent() function reads the next line from the ttys file, opening the file if necessary. The setttyent() function rewinds the file if open, or opens the file if it is unopened. The setttyentpath() function is equivalent to setttyent() but accepts an additional argument to read the ttys information from an alternate file instead of the default location (defined in _PATH_TTYS). The endttyent() function closes any open files. The getttynam() function searches from the beginning of the file until a matching name is found (or until EOF is encountered). RETURN VALUES
The routines getttyent() and getttynam() return a null pointer on EOF or error. The setttyent() and setttyentpath() functions and endttyent() return 0 on failure and 1 on success. FILES
/etc/ttys SEE ALSO
login(1), ttyslot(3), gettytab(5), termcap(5), ttys(5), getty(8), init(8), ttyflags(8) HISTORY
The getttyent(), getttynam(), setttyent(), and endttyent() functions appeared in 4.3BSD. The setttyentpath() function appeared in NetBSD 4.0. BUGS
These functions use static data storage; if the data is needed for future use, it should be copied before any subsequent calls overwrite it. BSD
April 18, 2006 BSD
All times are GMT -4. The time now is 06:35 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy