From owner-freebsd-questions@FreeBSD.ORG Fri Nov 9 03:29:29 2007 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E3AB916A417 for ; Fri, 9 Nov 2007 03:29:29 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from smtp02.lnh.mail.rcn.net (smtp02.lnh.mail.rcn.net [207.172.157.102]) by mx1.freebsd.org (Postfix) with ESMTP id A58F913C48A for ; Fri, 9 Nov 2007 03:29:29 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from mr08.lnh.mail.rcn.net ([207.172.157.28]) by smtp02.lnh.mail.rcn.net with ESMTP; 08 Nov 2007 22:29:21 -0500 Received: from smtp01.lnh.mail.rcn.net (smtp01.lnh.mail.rcn.net [207.172.4.11]) by mr08.lnh.mail.rcn.net (MOS 3.8.3-GA) with ESMTP id JHQ69412; Thu, 8 Nov 2007 22:29:21 -0500 (EST) Received: from 209-6-22-188.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) ([209.6.22.188]) by smtp01.lnh.mail.rcn.net with ESMTP; 08 Nov 2007 22:28:18 -0500 From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18227.54289.403419.114120@jerusalem.litteratus.org> Date: Thu, 8 Nov 2007 22:29:21 -0500 To: =?ISO-8859-1?Q?Sd=E4vtaker?= In-Reply-To: <4733CAB4.2080508@gmail.com> References: <4733CAB4.2080508@gmail.com> X-Mailer: VM 7.17 under 21.5 (beta28) "fuki" XEmacs Lucid X-Junkmail-Whitelist: YES (by domain whitelist at mr08.lnh.mail.rcn.net) Cc: questions@freebsd.org Subject: problems using ls with for_in (SH) 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, 09 Nov 2007 03:29:30 -0000 =?ISO-8859-1?Q?Sd=E4vtaker?= writes: > Im trying to get a file with all the md5 hashes of one directory. > My initial script was this: > #!/bin/sh > for file in $(ls) > do > echo $file > md5 $file > done > > The problem is with the file names who contains "whitespaces" becouse > the for_in passed each word as one iteration and not the full filename, > I'd tried using -B in ls, but doesnt help. > Any idea what can i do? Yes. :-) Find the documetation, and look up the IFS environment variable. Robert Huff