[Gambas-user] Possible bug in Gambas

Doriano Blengino doriano.blengino at ...1909...
Thu Oct 16 08:38:06 CEST 2008


Ron_1st ha scritto:
> On Wednesday 15 October 2008, Kari Laine wrote:
>   
>> On Wed, Oct 15, 2008 at 6:57 PM, Werner <wdahn at ...1000...> wrote:
>>
>>     
>>> Kari Laine wrote:
>>>       
>>>> On Wed, Oct 15, 2008 at 5:15 PM, Ron_1st <ronstk at ...239...> wrote:
>>>>
>>>>
>>>>         
>>>>> What should stand on the ??, (welche buchstaben?)
>>>>>
>>>>>           
>>> They stand for umlauts ä ö ü from what I deduct from the file names.
>>>       
You could try a batch rename for all file names. Try this command line:

    echo -n "See 123 è飧.ç°#" |tr -c [:alnum:]" ." -; echo

In my italian keyboard I have the èé£, you will have other glyphs. If 
this could help, then a

    for a in *; do mv "$a" "$(echo -n "$a" |tr -c [:alnum:]' .' -)"; done

should remove all those unwanted/erroneous chars. You can add other 
glyphs to be maintained, inside the quotes after [:alnum].

I think that, if "ls |wc" complains, then gambas is legitimate to 
complain too: of course by raising a catchable error.

Cheers.






More information about the User mailing list