Any good Scan and Replace Program?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • President
    Confirmed User
    • Dec 2002
    • 383

    #1

    Any good Scan and Replace Program?

    Can someone recommend a Scan and Replace program that can handle thousands of files.
    Either Unix or Windows based.
    I would imagine a Unix version would be faster, I need to do "blocks" of data not just a word or two.

    Thanks
  • dready
    Confirmed User
    • Oct 2002
    • 5247

    #2
    bump
    ICQ: 91139591

    Comment

    • President
      Confirmed User
      • Dec 2002
      • 383

      #3
      Okay with all these threads about this new annoying skin, I need to do a bump here.

      There has got to be someone out there with a solution

      Comment

      • xxxice
        Confirmed User
        • Feb 2002
        • 5042

        #4
        bump

        Comment

        • u-Bob
          there's no $$$ in porn
          • Jul 2005
          • 33063

          #5
          perl is your friend.

          Comment

          • President
            Confirmed User
            • Dec 2002
            • 383

            #6
            Originally posted by u-Bob
            perl is your friend.

            I know the program is simple if you know how to do it and yes I think a Unix tool would be best. I once had one but have misplaced it.

            There has got to be something out there...

            Bump

            Comment

            • Chio
              Confirmed User
              • Oct 2002
              • 8002

              #7
              Originally posted by President
              Can someone recommend a Scan and Replace program that can handle thousands of files.
              Either Unix or Windows based.
              I would imagine a Unix version would be faster, I need to do "blocks" of data not just a word or two.

              Thanks

              I use macromedias home site, the find and replace in that can do wonders.

              If you need to do lots of files, use the check box for subdirectories, and folder location. Also you can add or block extensions too.

              I seo'd my hair yesterday and today it's pr7!
              RIP Texas Dreams

              Are you a content producer or program owner sick of tube sites? Contact me on ICQ: 39-183769

              Comment

              • sunshynevideo
                Confirmed User
                • Jul 2005
                • 360

                #8
                Try search and replace 98

                Its for windows and will handle just about anything you can throw at it

                http://www.htmlworkshop.com/

                Comment

                • President
                  Confirmed User
                  • Dec 2002
                  • 383

                  #9
                  Thanks Chio, I am currenty using Macromedia but it has been running for 18 hours and has a loooong ways to go. I think Unix is the only answer

                  Ober 60k files

                  Comment

                  • RobbieRye
                    Registered User
                    • Oct 2005
                    • 616

                    #10
                    vi for unix

                    editpad for windows

                    Comment

                    • studiocritic
                      Confirmed User
                      • Jun 2005
                      • 2442

                      #11
                      A tool called rpl for unix.. hit me up on icq if you need help w/ it 254342256
                      254342256

                      Comment

                      • President
                        Confirmed User
                        • Dec 2002
                        • 383

                        #12
                        Originally posted by studiocritic
                        A tool called rpl for unix.. hit me up on icq if you need help w/ it 254342256
                        Thanks, I'll give that a try and report back, Thanks for the ICQ will contact you if I run into any problems.

                        Comment

                        • RobbieRye
                          Registered User
                          • Oct 2005
                          • 616

                          #13
                          Here is a quick shell script that might help you out:

                          for fl in *.txt; do
                          mv $fl $fl.old
                          sed 's/find/replace/g' $fl.old > $fl
                          done

                          Comment

                          Working...