From owner-freebsd-questions@FreeBSD.ORG Mon Nov 22 16:17:04 2004 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 C3DB416A4CE for ; Mon, 22 Nov 2004 16:17:04 +0000 (GMT) Received: from sccimhc92.asp.att.net (sccimhc92.asp.att.net [63.240.76.166]) by mx1.FreeBSD.org (Postfix) with ESMTP id 747AE43D54 for ; Mon, 22 Nov 2004 16:17:04 +0000 (GMT) (envelope-from freebsd@nbritton.org) Received: from [192.168.1.10] (12-223-129-46.client.insightbb.com[12.223.129.46]) by sccimhc92.asp.att.net (sccimhc92) with ESMTP id <20041122161703i92002b7kne>; Mon, 22 Nov 2004 16:17:03 +0000 Message-ID: <41A210FD.8060409@nbritton.org> Date: Mon, 22 Nov 2004 10:17:01 -0600 From: Nikolas Britton User-Agent: Mozilla Thunderbird 0.9 (X11/20041119) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Ruben de Groot References: <41A1C433.90406@nbritton.org> <41A1C865.30308@solid-state-logic.com> <41A1E04B.9070107@nbritton.org> <20041122142933.GA10428@ei.bzerk.org> In-Reply-To: <20041122142933.GA10428@ei.bzerk.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-questions cc: Martin Hepworth Subject: Re: Job Control 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: Mon, 22 Nov 2004 16:17:04 -0000 Ruben de Groot wrote: >On Mon, Nov 22, 2004 at 06:49:15AM -0600, Nikolas Britton typed: > > >>I've play a bit with screen but I don't think it will work for my >>problem so let me restate it. Lets say I wanted to buildworld, build a >>port, cvsup, portupgrade, etc. but forgot to do it before I left for >>school, work, or wherever so I ssh into my box and do #foobar& etc. and >>then exit, then when I get back home I want to see what happened. I >>guess it just goes to show that there's always a solution to a problem, >>you just have to look at it from another angle (can you thing of any >>other solutions btw?): >> >> > >>From work: ># nohup foobar >& foobar.log & > >Back home: ># tail -f foobar.log > >Ruben > > > Thanks.... # nohup foobar >& foobar.log & ^^^^ ^^^ Why'd you do it like that, how is it diffrent from this way?: # nohup foobar > foobar.log &