On Thu, 2025-02-20 at 08:01 +0800, walt via beginners wrote:
> >
> > Something like:
> >
> > while (<*>) {
> > rename $_, "$1$2.jpg" if $_ =~ /(.+) (.+)\.jpg/;
> > }
> >
>
> what does <*> mean here?
<*> iterates over the current directory and returns every filename in
the directory to the
On Mon, 2025-02-17 at 12:38 -0500, hput wrote:
> I have several hundred *.jpg files with this pattern
>
> Actual example:
>
> 'AtlantaVisitAndGrandmaHands 056.jpg'
>
> The numbers vary, of course, but the alpha part and number of digits
> after the space is the same in all *.jpg files
>
> I