From owner-freebsd-questions@FreeBSD.ORG Mon Feb 9 09:41:38 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 6544E16A4E0 for ; Mon, 9 Feb 2004 09:41:38 -0800 (PST) Received: from smtpout.mac.com (A17-250-248-87.apple.com [17.250.248.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62D4443D2F for ; Mon, 9 Feb 2004 09:41:38 -0800 (PST) (envelope-from cswiger@mac.com) Received: from mac.com (smtpin08-en2 [10.13.10.153]) by smtpout.mac.com (Xserve/MantshX 2.0) with ESMTP id i19Hfbp3013381; Mon, 9 Feb 2004 09:41:38 -0800 (PST) Received: from [10.1.1.193] (nfw2.codefab.com [66.234.138.66]) (authenticated bits=0) by mac.com (Xserve/smtpin08/MantshX 3.0) with ESMTP id i19HfbED021194; Mon, 9 Feb 2004 09:41:37 -0800 (PST) In-Reply-To: <027201c3ef32$fe3fc060$0701a8c0@darryl> References: <027201c3ef32$fe3fc060$0701a8c0@darryl> Mime-Version: 1.0 (Apple Message framework v612) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <354AF10C-5B27-11D8-8AE0-003065ABFD92@mac.com> Content-Transfer-Encoding: 7bit From: Charles Swiger Date: Mon, 9 Feb 2004 12:41:36 -0500 To: darryl@osborne-ind.com X-Mailer: Apple Mail (2.612) cc: freebsd-questions@freebsd.org Subject: Re: rsync question 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, 09 Feb 2004 17:41:38 -0000 On Feb 9, 2004, at 12:34 PM, Darryl Hoar wrote: > I'm running 5.1-release. I've installed rsync from ports. > I've looked at the man pages and only saw where I > can specifiy the log format. How do I specify a log > file? or must I : rsync -av /test/ /tmp/test > mylog.txt ? The rsync documentation says that logging goes to stdout: --log-format=FORMAT This allows you to specify exactly what the rsync client logs to stdout on a per-file basis. The log format is specified using the same format conventions as the log format option in rsyncd.conf. ...so redirecting the output to the logfile as you've done is right. -- -Chuck