Discussion forum for all Windows batch related topics.
Moderator: DosItHelp
-
Endoro
- Posts: 244
- Joined: 27 Mar 2013 01:29
- Location: Bozen
#1
Post
by Endoro » 10 Apr 2013 13:25
Hi, I'm looking for a REPL tool with an option similar to "findstr /g:", that reads the search strings from a file.
Does anyone know of such a tool and can help me please?
-
dbenham
- Expert
- Posts: 2461
- Joined: 12 Feb 2011 21:02
- Location: United States (east coast)
#2
Post
by dbenham » 10 Apr 2013 19:40
Why not write a batch script that reads the search and replace strings from a file and calls the REPL.BAT for each search/replace pair?
Or else look at the JScript code in REPL.BAT and write your own pure JSCRIPT variant that reads the search/replace strings from a file?
Dave Benham
-
Endoro
- Posts: 244
- Joined: 27 Mar 2013 01:29
- Location: Bozen
#3
Post
by Endoro » 10 Apr 2013 22:51
dbenham wrote:Why not write a batch script that reads the search and replace strings from a file and calls the REPL.BAT for each search/replace pair?
Because my knowledge in VB is below poor I will do this. Thank you!