From owner-freebsd-questions@FreeBSD.ORG Fri May 26 14:53:31 2006 Return-Path: X-Original-To: freebsd-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 E295E16A421 for ; Fri, 26 May 2006 14:53:31 +0000 (UTC) (envelope-from user@dhp.com) Received: from shell.dhp.com (shell.dhp.com [199.245.105.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB0DC43D55 for ; Fri, 26 May 2006 14:53:30 +0000 (GMT) (envelope-from user@dhp.com) Received: by shell.dhp.com (Postfix, from userid 896) id 1810A3133C; Fri, 26 May 2006 10:53:23 -0400 (EDT) Date: Fri, 26 May 2006 10:53:23 -0400 (EDT) From: Ensel Sharon To: freebsd-questions@freebsd.org Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: remote file moves, over SSH, with wildcards ... help needed. 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, 26 May 2006 14:53:32 -0000 (FreeBSD 6.0-RELEASE) I cannot move a file, over ssh, with wildcards: # ssh user@host.com mv /dir/file*.wav /dir2 ssh: No match. Ok, so I quote it: # ssh user@host.com mv "/dir/file*.wav" /dir2 Password: mv: rename /dir/file*.wav to /dir2/*.wav: No such file or directory I even tried single quoting both paths, and just double quoting the file*.wav Nothing works. Is it possible to move with wildcards over ssh ?