Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
01-29-2010, 09:29 AM
|
#1
|
LQ Newbie
Registered: Nov 2009
Location: coimbatore
Distribution: centos
Posts: 7
Rep:
|
what is the purpose
Hi,
Please explain what is the purpose of this " > /dev/null 2>&1" in CRON Job, Please Please Explain why the standard out put is sent to Null device and then what is the purpose of this argument 2>&1, Please HELP
TIA 
|
|
|
01-29-2010, 09:34 AM
|
#2
|
Moderator
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417
|
it just suppresses all output - Stdout is sent to null where it gets blackholed, and then stderr is sent to whereever stdout is going (which we already know is null), otherwise you tend to end up being emailed the output of the scripts, based on the MAILTO setting in the crontab file, which is usually not desirable.
|
|
|
01-29-2010, 11:15 AM
|
#3
|
LQ Guru
Registered: Feb 2004
Location: SE Tennessee, USA
Distribution: Gentoo, LFS
Posts: 11,182
|
Every program in Linux (or any Unix variant) has three standard files available to it: - STDIN - the standard input stream
- STDOUT - the standard output stream (which can be redirected in the shell using ">")
- STDERR - the standard "error output" stream (which can be redirected using "2>")
Normally, the shell intermingles STDOUT and STDERR output, displaying both of the two streams inter-mingled. But, as I said, you can redirect either one or both.
So what if you want to just discard something? Well, that's why you've got a nice "bit-bucket," called /dev/null. Anything you write to it drops into the bucket. Anything you read from it is immediate end-of-file.
Caution: The bit-bucket must be emptied on a regular basis. (The most common cause of an unexpected system crash is: "bit-bucket overflow.") Bits are very smelly and sticky. (Especially the bits from Windows machines!) Be careful not to spill the bucket's contents on the floor when you empty it: they'll leave an indelible stain on any carpet. 
|
|
|
02-10-2010, 09:56 AM
|
#4
|
Senior Member
Registered: Jul 2009
Location: Virginia
Distribution: Debian Stable Testing Sid Slackware CentOS
Posts: 1,055
Rep:
|
Is this correct?
> /dev/null 2>&1 will stop all output by sending it to /dev/null
> /dev/null stops STDOUT but allows STDERR to be sent
> redirects STDOUT
2> redirects STDERR or 2>&1 redirects STDERR
and what is the &1 in 2>&1 mean?
thanks
|
|
|
02-10-2010, 11:47 AM
|
#5
|
Moderator
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417
|
2>&1 sends STDERR to STDOUT, combining the two streams into one.
|
|
1 members found this post helpful.
|
02-10-2010, 12:30 PM
|
#6
|
Member
Registered: Dec 2008
Location: Bellevue,WA
Distribution: RHEL 5 , Fedora ,Sabayon,Solaris,Vmware,AWS
Posts: 107
Rep:
|
Thanks all , that's a good explanation , was helpful to me
|
|
|
02-10-2010, 12:41 PM
|
#7
|
Senior Member
Registered: Jul 2009
Location: Virginia
Distribution: Debian Stable Testing Sid Slackware CentOS
Posts: 1,055
Rep:
|
Thanks Chris
|
|
|
02-10-2010, 05:18 PM
|
#8
|
LQ Guru
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.x
Posts: 18,434
|
To expand on sundialsvcs, each channel has an associated number:
stdin = 0
stdout = 1
stderr = 2
and you do redirects with the nums, not the names.
|
|
|
All times are GMT -5. The time now is 08:45 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|