Ron_1st ha scritto:
> On Wednesday 15 October 2008, Kari Laine wrote:
>   
>> On Wed, Oct 15, 2008 at 6:57 PM, Werner <[EMAIL PROTECTED]> wrote:
>>
>>     
>>> Kari Laine wrote:
>>>       
>>>> On Wed, Oct 15, 2008 at 5:15 PM, Ron_1st <[EMAIL PROTECTED]> 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.



-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to