From owner-freebsd-questions@FreeBSD.ORG Fri Dec 21 17:34:55 2007 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B838716A468 for ; Fri, 21 Dec 2007 17:34:55 +0000 (UTC) (envelope-from jhall@vandaliamo.net) Received: from trueband.net (director.trueband.net [216.163.120.8]) by mx1.freebsd.org (Postfix) with SMTP id 3E64713C46A for ; Fri, 21 Dec 2007 17:34:54 +0000 (UTC) (envelope-from jhall@vandaliamo.net) Received: (qmail 6147 invoked by uid 1006); 21 Dec 2007 17:34:53 -0000 Received: from jhall@vandaliamo.net by rs0 by uid 1003 with qmail-scanner-1.16 (spamassassin: 3.1.4. Clear:SA:0(-1.4/100.0):. Processed in 1.16792 secs); 21 Dec 2007 17:34:53 -0000 X-Spam-Status: No, hits=-1.4 required=100.0 X-Spam-Level: Received: from unknown (HELO trueband.net) (172.16.0.14) by -v with SMTP; 21 Dec 2007 17:34:52 -0000 Received: (qmail 24280 invoked from network); 21 Dec 2007 17:34:52 -0000 Received: from unknown (HELO admintool.trueband.net) (127.0.0.1) by -v with SMTP; 21 Dec 2007 17:34:52 -0000 Received: from 65.117.48.155 (SquirrelMail authenticated user jhall@vandaliamo.net) by admintool.trueband.net with HTTP; Fri, 21 Dec 2007 17:34:52 -0000 (GMT) Message-ID: <49457.65.117.48.155.1198258492.squirrel@admintool.trueband.net> In-Reply-To: <863400045.20071221201413@bk.ru> References: <51935.12.170.206.13.1198248568.squirrel@admintool.trueband.net> <1044977630.20071221175247@bk.ru> <49254.65.117.48.155.1198256367.squirrel@admintool.trueband.net> <863400045.20071221201413@bk.ru> Date: Fri, 21 Dec 2007 17:34:52 -0000 (GMT) From: jhall@vandaliamo.net To: "Michael Lednev" User-Agent: SquirrelMail/1.4.4 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: freebsd-questions@freebsd.org Subject: Re: Redirecting STDOUT X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Dec 2007 17:34:55 -0000 > In that case you only redirecting STDERR to file. As you've been > already told STDOUT will be redirected with > > $ command 1>file > > or > > $ command > file > > adding 2>&1 will also redirect STDERR to this file > When I run this as a non-root user it works fine. But, when running it as root, it does not produce the expected results. $ ls -l /fjdkslafjdl 2>/home/hallja/test2 And, in the file test2, I see ls: /fjdkslafjdl: No such file or directory Running the same command as root, I receive the following results. # ls -l /fjdkslafjdl 2>/home/hallja/test2 ls: /fjdkslafjdl: No such file or directory And, in /home/hallja/test2 I see the following. -rw-r--r-- 1 root hallja 0 Dec 21 08:02 2 Why does this not work as root? Thanks, Jay