From owner-freebsd-questions@FreeBSD.ORG Sun Sep 30 17:33:44 2007 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 EC1CB16A418 for ; Sun, 30 Sep 2007 17:33:44 +0000 (UTC) (envelope-from njm@njm.f2s.com) Received: from outmail1.freedom2surf.net (outmail1.freedom2surf.net [194.106.33.237]) by mx1.freebsd.org (Postfix) with ESMTP id B093013C45A for ; Sun, 30 Sep 2007 17:33:44 +0000 (UTC) (envelope-from njm@njm.f2s.com) Received: from oberon.njm.f2s.com (i-195-137-21-170.freedom2surf.net [195.137.21.170]) by outmail1.freedom2surf.net (Postfix) with ESMTP id 77CC851F83; Sun, 30 Sep 2007 18:33:43 +0100 (BST) Received: from oberon.njm.f2s.com (localhost.njm.f2s.com [127.0.0.1]) by oberon.njm.f2s.com (8.14.1/8.14.1) with ESMTP id l8UHXhu5002363; Sun, 30 Sep 2007 18:33:43 +0100 (BST) (envelope-from njm@oberon.njm.f2s.com) Received: (from njm@localhost) by oberon.njm.f2s.com (8.14.1/8.14.1/Submit) id l8UHXh2i002362; Sun, 30 Sep 2007 18:33:43 +0100 (BST) (envelope-from njm) Date: Sun, 30 Sep 2007 18:33:43 +0100 From: "N.J. Mann" To: Jeff Laine Message-ID: <20070930173343.GA1611@oberon.njm.f2s.com> Mail-Followup-To: Jeff Laine , freebsd-questions@freebsd.org References: <2b98f2f70709300956w5bf6b0das679279446d1962b0@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <2b98f2f70709300956w5bf6b0das679279446d1962b0@mail.gmail.com> X-Operating-System: FreeBSD 6.2-STABLE User-Agent: Mutt/1.5.16 (2007-06-09) Cc: freebsd-questions@freebsd.org Subject: Re: keep track of a text file 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: Sun, 30 Sep 2007 17:33:45 -0000 In message <2b98f2f70709300956w5bf6b0das679279446d1962b0@mail.gmail.com>, Jeff Laine wrote: > > Just wonder about one catch: is it possible to keep track of any text file's > contents in a real time? > For example, I open ttyv1 and via some magic command :) I get my file's > contents updating in real time if any modifications occured. > > Any advices will be very much appreciated. tail -f man tail(1) for details Cheers, Nick. --