Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Batch Script for Reading/Parsing
Name: Aemi Date: December 6, 2007 at 00:22:10 Pacific OS: Windows CPU/Ram: PENTIUM $ Product: DELL
Comment:
Hi I want to Edit one one of the Auth file in SVN , so that it gives an error msg to user if he puts some undesired characters in that file, like one should enter any (a-z,A-Z,0-9,#,) any other characters if enterd file should not be saved , also one has to enter a msg after saving what are the chages that he has made.
for that a script which will read and parse the file is required I am new to batch so need help
Name: klint Date: December 12, 2007 at 02:32:25 Pacific
Reply:
I assume you are talking about Subversion (source code change control.) Unfortunately, I have not yet started learning how to use Subversion. I don't know what an Auth file is. As you haven't received any replies, I guess no-one else on this forum knows either. Can you re-phrase your question so that it doesn't need any prior knowledge to answer?
Summary: I am working on a batch script that would update 7 different file servers that run the exact same application. The servers have identical directory structures. My goal is to create a mirrored direct...
Summary: I have a FOR loop in a Batch Script on XP Pro. FOR /L %%A IN (1 1 %engine_instance%) DO ( type %logs_dir%\sim_engine_%%A.log | FIND "Customers Processed This Run" > %logs_dir%\run_sim_temp_%%A.txt ...
Summary: So I'm trying to do a nested loop in a batch script: FOR /d %%B in ("C:\Documents and Settings" "C:\Documents and Settings\*") DO CMD /C FOR /d %%C in ("%%B\Application Data\Mozilla\Firefox\Profiles" ...