Search found 4 matches

by message1
21 Aug 2012 14:23
Forum: DOS Batch Forum
Topic: Issue with script
Replies: 8
Views: 6060

Re: Issue with script

Yes
by message1
21 Aug 2012 14:17
Forum: DOS Batch Forum
Topic: Issue with script
Replies: 8
Views: 6060

Re: Issue with script

Sorry, I made you understand the issue wrongly.


I am trying to process the data in the .txt file and i am processing it and not trying to rename the file name just.


Thanks
by message1
21 Aug 2012 14:11
Forum: DOS Batch Forum
Topic: Issue with script
Replies: 8
Views: 6060

Re: Issue with script

Yes.
12345 with 56789.


Thanks.
by message1
21 Aug 2012 13:56
Forum: DOS Batch Forum
Topic: Issue with script
Replies: 8
Views: 6060

Issue with script

I am trying to replace '12345' with '56789' in a text file. For this I am calling the following command in run_rename.bat file: for /f "usebackq delims==" %%a IN (`dir /b *4869*.txt`) do call renameFile.bat %%a And the renamefile.bat has the following code: 'net use P:\ CD C:\temp REM REM ...