LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
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


Reply
  Search this Thread
Old 01-29-2010, 09:29 AM   #1
pradeepjeevan
LQ Newbie
 
Registered: Nov 2009
Location: coimbatore
Distribution: centos
Posts: 7

Rep: Reputation: 0
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
 
Old 01-29-2010, 09:34 AM   #2
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
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.
 
Old 01-29-2010, 11:15 AM   #3
sundialsvcs
LQ Guru
 
Registered: Feb 2004
Location: SE Tennessee, USA
Distribution: Gentoo, LFS
Posts: 10,659
Blog Entries: 4

Rep: Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941Reputation: 3941
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.
 
Old 02-10-2010, 09:56 AM   #4
etech3
Senior Member
 
Registered: Jul 2009
Location: Virginia
Distribution: Debian Stable Testing Sid Slackware CentOS
Posts: 1,055
Blog Entries: 2

Rep: Reputation: 45
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
 
Old 02-10-2010, 11:47 AM   #5
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
2>&1 sends STDERR to STDOUT, combining the two streams into one.
 
1 members found this post helpful.
Old 02-10-2010, 12:30 PM   #6
++nick++
Member
 
Registered: Dec 2008
Location: Bellevue,WA
Distribution: RHEL 5 , Fedora ,Sabayon,Solaris,Vmware,AWS
Posts: 107

Rep: Reputation: 18
Thanks all , that's a good explanation , was helpful to me
 
Old 02-10-2010, 12:41 PM   #7
etech3
Senior Member
 
Registered: Jul 2009
Location: Virginia
Distribution: Debian Stable Testing Sid Slackware CentOS
Posts: 1,055
Blog Entries: 2

Rep: Reputation: 45
Thanks Chris
 
Old 02-10-2010, 05:18 PM   #8
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,359

Rep: Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751
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.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LVM Purpose FredGSanford Fedora 4 08-01-2008 05:23 AM
Purpose? kienjakenobi LinuxQuestions.org Member Intro 3 03-18-2008 05:49 PM
Purpose of IDE JMJ_coder Programming 8 03-12-2007 03:10 PM
what distro for my purpose mht Linux - Newbie 2 07-06-2005 10:29 PM
purpose of symbol ^ sharonyiisl Linux - Newbie 3 09-20-2004 01:14 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 02:23 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration