emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#10394: closed (Bug in tr command)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#10394: closed (Bug in tr command)
Date: Thu, 29 Dec 2011 09:16:03 +0000

Your message dated Thu, 29 Dec 2011 10:12:22 +0100
with message-id <address@hidden>
and subject line Re: bug#10394: Bug in tr command
has caused the debbugs.gnu.org bug report #10394,
regarding Bug in tr command
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
10394: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=10394
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: Bug in tr command Date: Wed, 28 Dec 2011 18:29:33 -0800 (PST)
Dear GNU,

Not sure if this is bug. But I think first one is legal command that is logically similar to second which works


Thank you,
Raj.

#1-- Error
address@hidden ~]$ echo "Raj" | tr "[[:alpha:]]" "[[:lower:]]"
tr: misaligned [:upper:] and/or [:lower:] construct

#2--Ok
address@hidden ~]$ echo "Raj" | tr "[[:upper:]]" "[[:lower:]]"
raj
address@hidden ~]$


address@hidden ~]$ tr --version
tr (GNU coreutils) 6.12
Copyright (C) 2008 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Jim Meyering.




--- End Message ---
--- Begin Message --- Subject: Re: bug#10394: Bug in tr command Date: Thu, 29 Dec 2011 10:12:22 +0100
tags 10394 notabug
thanks

Raj Kambli wrote:
> Not sure if this is bug. But I think first one is legal command that
> is logically similar to second which works
>
> #1-- Error
> address@hidden ~]$ echo "Raj" | tr "[[:alpha:]]" "[[:lower:]]"
> tr: misaligned [:upper:] and/or [:lower:] construct
>
>
> #2--Ok
> address@hidden ~]$ echo "Raj" | tr "[[:upper:]]" "[[:lower:]]"
> raj
> address@hidden ~]$

Thanks for the report.  However, that is not a bug.
Your first example really is an error.

As documented (see the "character classes" section of "info tr"), when
translating (i.e., not deleting), if you specify "lower" or "upper"
in the second set, you must specify "upper" or "lower" (resp.) in the
first set -- and it must be in the same relative position.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]