From owner-freebsd-questions@FreeBSD.ORG Mon Apr 4 17:54:19 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 590F916A4CE for ; Mon, 4 Apr 2005 17:54:19 +0000 (GMT) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF88643D66 for ; Mon, 4 Apr 2005 17:54:18 +0000 (GMT) (envelope-from gert.cuykens@gmail.com) Received: by rproxy.gmail.com with SMTP id a41so1270978rng for ; Mon, 04 Apr 2005 10:54:18 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=hqKD3Z/5IOea9HA+Jc6fbGifCNevzpLi1Rjt4pLB/zW3L0COO3uxwR/w5KpuwtAL6xFGujaZpSXPscLZ+6UT0/yQV//DCAfwq+fqrAYwGm4prtQkUvrP6oC0697LwuA+Sypqp11uLwOW+X1QIDq1IB5PLZ5JouOi8Bet02YDgKU= Received: by 10.38.13.39 with SMTP id 39mr5482874rnm; Mon, 04 Apr 2005 10:54:18 -0700 (PDT) Received: by 10.38.74.23 with HTTP; Mon, 4 Apr 2005 10:54:17 -0700 (PDT) Message-ID: Date: Mon, 4 Apr 2005 19:54:17 +0200 From: Gert Cuykens To: infofarmer@mail.ru In-Reply-To: <425110D4.2020106@mail.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit References: <425110D4.2020106@mail.ru> cc: freebsd-questions@freebsd.org cc: Jonathan Chen Subject: Re: exec make buildworld X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Gert Cuykens List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Apr 2005 17:54:19 -0000 On Apr 4, 2005 12:03 PM, Andrew P. wrote: > Jonathan Chen wrote: > > On Mon, Apr 04, 2005 at 06:16:14AM +0200, Gert Cuykens wrote: > > > >>On Apr 4, 2005 6:07 AM, Gert Cuykens wrote: > >> > >>>Is it possible to do a ssh conection then do exec make buildworld on > >>>the remote system close the conection and do a conection again later > >>>and get the output from make buildworld again ? > >>> > >> > >>Doh i forgot the important part again, without using screen :) > > > > > > # make buildworld >& log.file & > > # logout > > It's kinda strange, but it didn't work for me yesterday. > The build stopped as soon as I logged out, I used > Ctrl-D instead of logout though. > > What I find more comfortable is > # at + 1 minute > make buildworld > Ctrl-D > > Some time after I have new mail, containing all the > output (stdout and stderr) from the task. That's cute. > i think it did not work because you have to do "exec make buildworld > log.file & logout" dont know did not try it yet :) Is ctrl+D the same as close exit or logout or does it stand for detach and run in the background ? If i do ctrl +D in a terminal doing nothing ? Will the terminal be runing forever in the background doing nothing untill i kill it ? Where can you find a list of csh ctrl commands ?