http://qs321.pair.com?node_id=56233


in reply to Re: converting absolute to relative links
in thread converting absolute to relative links

A text editor substitution works well when you have 1-5 files. Suppose that the monk in question is dealing with a webserver that serves 500 documents with this problem. Perl /is/ your friend. (Of course, this brings about the template argument, but we'll save that for another day.. =])

-marius
  • Comment on Re: Re: converting absolute to relative links

Replies are listed 'Best First'.
Re: Re: Re: converting absolute to relative links
by belize (Deacon) on Feb 03, 2001 at 22:16 UTC
    I am speaking as a relative newcomer to Perl. So with all respect I can say that I have used BBEdit to do a "Find and Replace" on over 100 files in multiple directories. It is fast (~5 files a second), accurate on changes to a small number of characters (15-20 charaters at a time), and will provide a summary of changes as well as automatically save or allow you to manually save.

    By the way, I have no conection to BBEdit in any shape or form.

      Try
      perl -pi.bak -e 's-src=("?)myserver.com/images/-src=$1../images/-g' *. +html
      Our definitions of fast may differ.

      Also note how easily I made the substitution just slightly more flexible.

      Of course for a summary of changes I usually just use:

      cvs diff | less
      (Source control is your friend!)
        I guess I am more comfortable at this point in using my text editor to perform all functins while coding, including checking for syntax, running, Find & Replace as well as version control (see VOODOO for BBEdit).

        But then I am sure I am not close to the same level as Tilly and others (yet).

        I would be interested in knowing how many others code Perl on Mac?

      Neat! I'm used to dealing with editors that do single file search and replaces as opposed to glob() style search and replaces. Didn't realized BBEdit would do that. The confirmation summary is insteresting as well. Thanks for the info! (I've no official connection to perl, but I would still use it ;) )

      -marius