From owner-freebsd-questions@FreeBSD.ORG Fri Jun 10 16:39:41 2005 Return-Path: X-Original-To: questions@FreeBSD.org 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 2B0C216A41C for ; Fri, 10 Jun 2005 16:39:41 +0000 (GMT) (envelope-from mi+mx@aldan.algebra.com) Received: from mail28.sea5.speakeasy.net (mail28.sea5.speakeasy.net [69.17.117.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BBB843D5C for ; Fri, 10 Jun 2005 16:39:38 +0000 (GMT) (envelope-from mi+mx@aldan.algebra.com) Received: (qmail 25356 invoked from network); 10 Jun 2005 16:39:37 -0000 Received: from aldan.algebra.com ([216.254.65.224]) (envelope-sender ) by mail28.sea5.speakeasy.net (qmail-ldap-1.03) with AES256-SHA encrypted SMTP for ; 10 Jun 2005 16:39:37 -0000 Received: from corbulon.video-collage.com (static-151-204-231-237.bos.east.verizon.net [151.204.231.237]) by aldan.algebra.com (8.13.1/8.13.1) with ESMTP id j5AGdTMI011208 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 10 Jun 2005 12:39:35 -0400 (EDT) (envelope-from mi+mx@aldan.algebra.com) Received: from mteterin.us.murex.com (195-11.customer.cloud9.net [168.100.195.11]) by corbulon.video-collage.com (8.13.4/8.13.1) with ESMTP id j5AGdMvh048832 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Fri, 10 Jun 2005 12:39:23 -0400 (EDT) (envelope-from mi+mx@aldan.algebra.com) From: Mikhail Teterin Organization: Virtual Estates, Inc. To: questions@FreeBSD.org Date: Fri, 10 Jun 2005 12:39:16 -0400 User-Agent: KMail/1.7.2 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200506101239.17128.mi+mx@aldan.algebra.com> X-Virus-Scanned: ClamAV devel-20050525/921/Wed Jun 8 04:51:44 2005 on corbulon.video-collage.com X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.43 Cc: lwall@netlabs.com Subject: patching a file with blanks in the name 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: Fri, 10 Jun 2005 16:39:41 -0000 How does one make a patch for a while, that has blanks in the path: --- foo bar/meow~ Fri Mar 11 09:00:49 2005 +++ foo bar/meow Fri Jun 10 12:17:22 2005 - a = 0; + a = 1; With the above example, patch searches only for `foo', then gives up and asks for help. I tried quoting the entire file name and escaping the blanks with backslashes -- neither method works... Any ideas? Thanks! -mi