I've been using tr '[:upper:]' '[:lower:]' for a while, but with
version 6.9.90 (and 6.9.91) I know get the following hard error:
[EMAIL PROTECTED]:~> echo 'AbCd' | tr '[:lower:]' '[:upper:]'
ABCD
[EMAIL PROTECTED]:~> echo 'AbCd' | tr '[:upper:]' '[:lower:]'
tr: misaligned [:upper:] an
I found a bug with cp -p --parents when the destination partially exists and
the filesystem isn't mounted with acls.
$ mkdir -p a/b/c a/b/d e
$ touch a/b/c/foo a/b/d/foo
$ cp -p --parent a/b/c e
$ cp -p --parent a/b/d e
$ ls -ld e/a
d- 3 jblunck suse 4096 1970-01-01 01:00 e/a
This bug was
Jan Blunck <[EMAIL PROTECTED]> writes:
> I found a bug with cp -p --parents when the destination partially exists and
> the filesystem isn't mounted with acls.
>
> $ mkdir -p a/b/c a/b/d e
> $ touch a/b/c/foo a/b/d/foo
> $ cp -p --parent a/b/c e
> $ cp -p --parent a/b/d e
> $ ls -ld e/a
> d---