[Gambas-user] Possible bug in Gambas

Kari Laine klaine8 at ...626...
Thu Oct 16 17:35:32 CEST 2008


On Thu, Oct 16, 2008 at 9:47 AM, Ron_1st <ronstk at ...239...> wrote:

> On Thursday 16 October 2008, Doriano Blengino wrote:
> > 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
>
> That is not posible. There are 2 unknown letters that should be replaced by
> one?
> Second German is not the native language of Kari when I understood right,
> so it is unknown how to rename
> '14-43-18.06.02_APIs_f??r_ComboBox_+_ListBox.zip'
> Only german speaking persoon know that it must be ...APIs_für_ComboBox...
> or
> ...APIs_fuer_ComboBox...
>
> >
> > 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.
> >
>
> That's me idea too.
>
> Thanks for help,
I solved the problem with a routine which renames files to legal ones in
work directory just before genisoimage makes the image. I don't change the
original names because I think it would be big no-no to mess with user's
file names.


Best Regards
Kari Laine



More information about the User mailing list