Re: [PLUG] rename not working as expected

2016-08-07 Thread Rich Shepard
On Thu, 4 Aug 2016, Michael Rasmussen wrote: > rename .htm .html *.htm > rename .JPG *.jpg Michael, Yep. I had the experssion and files, but not the replacement. Toda, Rich ___ PLUG mailing list PLUG@lists.pdxlinux.org

Re: [PLUG] rename not working as expected

2016-08-04 Thread Paul Heinlein
On Thu, 4 Aug 2016, Rich Shepard wrote: > According to man rename: > > rename .htm .html *.htm > > will fix the extension of your html files. > > So, I expect that > > rename .JPG *.jpg rename .JPG .jpg *.JPG -- Paul Heinlein <> heinl...@madboa.com <> http://www.madboa.com/

Re: [PLUG] rename not working as expected

2016-08-04 Thread Dick Steffens
On 08/04/2016 04:35 PM, Rich Shepard wrote: > According to man rename: > > rename .htm .html *.htm > > will fix the extension of your html files. > > So, I expect that > > rename .JPG *.jpg > > will change the extension to lower case. It doesn't: > > rename: not enough arguments > > And,

Re: [PLUG] rename not working as expected

2016-08-04 Thread Michael Rasmussen
On Thu, Aug 04, 2016 at 04:35:41PM -0700, Rich Shepard wrote: >According to man rename: > > rename .htm .html *.htm > > will fix the extension of your html files. > >So, I expect that > > rename .JPG *.jpg > > will change the extension to lower case. It doesn't: > > rename: not

[PLUG] rename not working as expected

2016-08-04 Thread Rich Shepard
According to man rename: rename .htm .html *.htm will fix the extension of your html files. So, I expect that rename .JPG *.jpg will change the extension to lower case. It doesn't: rename: not enough arguments And, 'rename *.JPG *.jpg' produces the same error message. I've done