Re: Removing a space from file name

2025-02-17 Thread Smoot Carl-Mitchell via beginners
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

Re: Removing a space from file name

2025-02-17 Thread Mike Hübschen via beginners
Hello, Try something like this: rename 's/(.*?)\s(\d+).jpg$/$1$2.jpg/' *.jpg But make a backup first. Best regards, Mike On 2/17/25 18:38, hput wrote: I have several hundred *.jpg files with this pattern Actual example: 'AtlantaVisitAndGrandmaHands 056.jpg' The numbers vary, of course

Removing a space from file name

2025-02-17 Thread hput
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 have hundreds of these all in one directory. Not something you'd w