Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Perl Rename

by BrowserUk (Patriarch)
on Jul 03, 2010 at 08:59 UTC ( [id://847884]=note: print w/replies, xml ) Need Help??


in reply to Perl Rename

Try switching the 's for "s.

Replies are listed 'Best First'.
Re^2: Perl Rename
by Mad_Mac (Beadle) on Jul 03, 2010 at 11:31 UTC

    Good idea. I should have thought of that. It get's rid of my error, but the test files aren't getting renamed.

    Hmmm ....

      Works for me if I invoke like this:

      rnm "s/Blah Blah - \d{2} - //" "Blah Blah - 01 - Peter.txt" "Blah Blah + - 02 - Lois.txt"

      Of course, that requires I supply the names of the files to be renamed because cmd.exe doesn't expand wildcards for you. If you want that to happen, you'll have to modify the script a little:

      #!/usr/bin/perl -w $op = shift or die "Usage: rename expr [files]\n"; chomp( @ARGV ); @ARGV = map glob, @ARGV; for ( @ARGV ) { $was = $_; eval $op; die $@ if $@; rename ( $was, $_ ) unless $was eq $_; }

      Then rnm "s/Blah Blah - \d{2} - //" *.txt works.


      Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
      "Science is about questioning the status quo. Questioning authority".
      In the absence of evidence, opinion is indistinguishable from prejudice.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://847884]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (3)
As of 2025-04-25 19:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.