[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: bug: basename 2.0 (win32/cygwin)
From: |
Jim Meyering |
Subject: |
Re: bug: basename 2.0 (win32/cygwin) |
Date: |
Thu, 12 Dec 2002 17:06:53 +0100 |
Jari Vuoksenranta <address@hidden> wrote:
> bug:
> "
> $ f="/mnt/w/w/Apache\ Group/Apache2/logs/error.log" # <- "apache\{space}/"
> $ basename $f
> Apache\
> "
> also
Thanks for the report, but that's not a bug.
In the above example, you should double-quote the argument to basename:
$ basename "$f"