From owner-freebsd-questions@FreeBSD.ORG Thu Mar 31 23:26:47 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9DE616A4CE for ; Thu, 31 Mar 2005 23:26:47 +0000 (GMT) Received: from smtpout.mac.com (smtpout.mac.com [17.250.248.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A6DC43D53 for ; Thu, 31 Mar 2005 23:26:47 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from mac.com (smtpin07-en2 [10.13.10.152]) id j2VNQlbd029660; Thu, 31 Mar 2005 15:26:47 -0800 (PST) Received: from [10.1.1.245] (nfw1.codefab.com [199.103.21.225]) (authenticated bits=0) by mac.com (Xserve/smtpin07/MantshX 4.0) with ESMTP id j2VNQiVO023035; Thu, 31 Mar 2005 15:26:46 -0800 (PST) In-Reply-To: References: <20050401011050.555a4819.albi@scii.nl> Mime-Version: 1.0 (Apple Message framework v619.2) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <247d7f6714333c625603b13a90c80401@mac.com> Content-Transfer-Encoding: 7bit From: Charles Swiger Date: Thu, 31 Mar 2005 18:26:44 -0500 To: Gert Cuykens X-Mailer: Apple Mail (2.619.2) cc: FreeBSD List Subject: Re: .xinitrc X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Mar 2005 23:26:47 -0000 On Mar 31, 2005, at 6:17 PM, Gert Cuykens wrote: > thx ps what is the difference between exec and without exec Read "man sh": exec [command [arg ...]] Unless command is omitted, the shell process is replaced with the specified program (which must be a real program, not a shell built-in command or function). Any redirections on the exec com- mand are marked as permanent, so that they are not undone when the exec command finishes. -- -Chuck