From owner-freebsd-questions@FreeBSD.ORG Thu Mar 31 23:11:49 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 2BC5416A4CE for ; Thu, 31 Mar 2005 23:11:49 +0000 (GMT) Received: from smtpout.mac.com (smtpout.mac.com [17.250.248.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF09143D55 for ; Thu, 31 Mar 2005 23:11:48 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from mac.com (smtpin08-en2 [10.13.10.153]) id j2VNBmci018798; Thu, 31 Mar 2005 15:11:48 -0800 (PST) Received: from [10.1.1.245] (nfw1.codefab.com [199.103.21.225]) (authenticated bits=0) by mac.com (Xserve/smtpin08/MantshX 4.0) with ESMTP id j2VNBkf2013434; Thu, 31 Mar 2005 15:11:47 -0800 (PST) In-Reply-To: References: Mime-Version: 1.0 (Apple Message framework v619.2) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Charles Swiger Date: Thu, 31 Mar 2005 18:11:45 -0500 To: Gert Cuykens X-Mailer: Apple Mail (2.619.2) cc: freebsd-questions@freebsd.org 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:11:49 -0000 On Mar 31, 2005, at 6:06 PM, Gert Cuykens wrote: > How do you start two things ? > > exec unclutter -root > exec enlightenment Don't use exec, except possibly for the last command. Use an "&" after the command name for earlier commands which do not exit immediately. -- -Chuck