Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. sepgs2004

    Search/replace a pattern in multiple files

    I got several scripts on line... however one of my colleague have RegExBuddy where we have to just write correct Reg Expression (for match and replace), it will apply on multiple files. Example bash script, that we could use. #!/bin/bash FILES=`find . -name *.txt` for file in $FILES do if [ -f...
  2. sepgs2004

    Do you know why my RE does not match my text

    This is the input: <html:text styleId="dateDue" property="newFee.dateDueString" maxlength="10" onkeyup="autoFormatDate(this, event)" size="10" onkeypress="digitsOnly()" onfocus="clearTextField(this)" onchange="dude()" /> My Reg expression is...
  3. sepgs2004

    Search/replace a pattern in multiple files

    Thanks for your question. I am on my way trying out. Let you know once I get stuck.
  4. sepgs2004

    Search/replace a pattern in multiple files

    Hi Good morning. I would like to search this: onkeyup="autoFormatDate(this,event)" and replace with onkeydown="return applyDateFormatting(this,event)" in all our JSP files. It is crazy if we do manually; they are 400 pages. All JSP pages are under one folder, let us say...
  5. sepgs2004

    exploring CVS repository or committing by some Id?

    I would like to know if we can do this with Eclipse CVS Plugin or if possible just with CVS. When we check in code (commit), can we associate the following in anyway possible (along with commit action). 1. Some ID (prefereably bug# from Bugzilla) 2. Some document (other than comments). I think...

Part and Inventory Search

Back
Top