flupke wrote:
>
> On Fri, 22 Sep 2000, Veit Waltemath wrote:
>
> > Hey folks,
> >
> > after running a perl-script al files an directories on a separate
> > partition are now ending with a ~ like file~ or directory~ and are only
> > visible in the shell.
> > How can i get this back?
>
> I can't figure out what happend or what script you have run to have that,
> but if all you want to do is removing the trailing ~ at the end of your
> filenames, then you can issue the following command :
> for i in * ; do mv $i ${i%%\~} ; done
>
> HTH
> Flupke
>
> --
> << There's no place like ~ >>
thanx, thats what i need.
Veit