From owner-freebsd-questions@FreeBSD.ORG Thu Jun 4 16:29:31 2009 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 6577B10656D2 for ; Thu, 4 Jun 2009 16:29:31 +0000 (UTC) (envelope-from nlandys@gmail.com) Received: from yw-out-2324.google.com (yw-out-2324.google.com [74.125.46.29]) by mx1.freebsd.org (Postfix) with ESMTP id 1D06F8FC1E for ; Thu, 4 Jun 2009 16:29:30 +0000 (UTC) (envelope-from nlandys@gmail.com) Received: by yw-out-2324.google.com with SMTP id 9so459860ywe.13 for ; Thu, 04 Jun 2009 09:29:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=9c4+FasLdYeJgwRWWoEble1eKGMygNhQzKmcUzagrf0=; b=VtyVviresqWd7jScHgJR0IGzXCIFveMdGX76lmy0ybIyri/4bq542IGJmqIlj6B2k7 AczkqkpZ1cbUi6+7bfFDyydyKi9lqt/WbX4M/tJFJ/L8QWrnE9/lMJS+EgmcUzMiD2OH wcGFI5DUvSBbw0oW2wrJcRtVfHFLvNfRIF44U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=a6hycxUB94+UOOpHhTWMvlkkR5KA/NvvG/Nj/okXuXlKZj2wjvTvD9bxEkGLzOCyfH f9geP9AnfO6Z94b98lpKc+HtSp4tDuOaG3akDJ8KKUdkqgUlDSPEmQKjs6p4whkvruBT HrZsrc+E6iSur6q0LX7FJCLzFQgGEUmihbFHU= MIME-Version: 1.0 Received: by 10.100.211.11 with SMTP id j11mr2775062ang.101.1244132970319; Thu, 04 Jun 2009 09:29:30 -0700 (PDT) In-Reply-To: References: <200906041406.n54E6Fts006668@dc.cis.okstate.edu> Date: Thu, 4 Jun 2009 09:29:30 -0700 Message-ID: <560f92640906040929p3786dd30n9b6a11dded90a44a@mail.gmail.com> From: Nerius Landys To: Barry Byrne Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Martin McCormick , freebsd-questions@freebsd.org Subject: Re: Can a Bourn Shell Script put itself in the background? 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: Thu, 04 Jun 2009 16:29:32 -0000 Just a thought, you can use the screen utility depending on what you are trying to do. For example if you want to start a job, long out of the machine completely, and then return to your job to see how it's running, you may choose to run screen. > screen bash (Press Control-A then d) (Logout from shell) (Log back in) > screen -r Hope this sheds some light.