From owner-freebsd-questions@FreeBSD.ORG Thu Aug 5 11:51:32 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 55D8F16A4CE for ; Thu, 5 Aug 2004 11:51:32 +0000 (GMT) Received: from bps.jodocus.org (g157016.upc-g.chello.nl [80.57.157.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id A443E43D5F for ; Thu, 5 Aug 2004 11:51:31 +0000 (GMT) (envelope-from joost@jodocus.org) Received: from jodocus.org (localhost [127.0.0.1]) by bps.jodocus.org (8.12.10/8.12.10) with ESMTP id i75BpTfH064792; Thu, 5 Aug 2004 13:51:29 +0200 (CEST) (envelope-from joost@jodocus.org) Received: (from joost@localhost) by jodocus.org (8.12.10/8.12.10/Submit) id i75BpRQ9064791; Thu, 5 Aug 2004 13:51:27 +0200 (CEST) (envelope-from joost) Date: Thu, 5 Aug 2004 13:51:27 +0200 From: Joost Bekkers To: Roger Merritt Message-ID: <20040805115127.GA64666@bps.jodocus.org> Mail-Followup-To: Joost Bekkers , Roger Merritt , freebsd-questions@freebsd.org References: <5.2.0.9.0.20040805174307.00a0a970@127.0.0.1> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5.2.0.9.0.20040805174307.00a0a970@127.0.0.1> User-Agent: Mutt/1.4.2.1i cc: freebsd-questions@freebsd.org Subject: Re: Back-up on remote machine 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: Thu, 05 Aug 2004 11:51:32 -0000 On Thu, Aug 05, 2004 at 05:58:24PM +0700, Roger Merritt wrote: > One example I found on the WWW is: tar -czf - /some/file | \ > ssh host.name tar -xzf - -C /destination. > > That's not quite what I want, because I don't see any need to untar > everything at the far end, but I can't send a file without using some > command to ssh. If all you need is somthing at the other end capturing the data try ... | ssh remotehost "cat - > myfile" -- greetz Joost joost@jodocus.org