On Tue, 16 Sep 2008 23:18:28 -0000, "cwb212001" <cwb212001@...> ... Hyperterminal can't do it and a batch file can't read the serial port natively. A...
Thanks for the response foxidrive. That's what I've been finding out. After many hours of looking I did find a simple piece of freeware that I think will...
On Tue, 23 Sep 2008 00:59:27 -0000, "cwb212001" <cwb212001@...> ... By all means mention the name. People looking through the archives one day will want...
Tangential to this thread, people might find this snippet from a batch file useful. Earlier in the script I ftp election returns and then echo the contents of...
ReD Raja Sekhar On 17-Sep-08, at 4:48 AM, "cwb212001" <cwb212001@...> wrote: Hey you guys have helped me before and I really appreciate it. I've got a...
I spoke too soon :( It doesn't work when copying across the network. It still shows the local files as being NEWER. Even if I run once and again right ...
Hi all, I need your help. I have a program that creates a .txt file with a 5 digit number as the contents. I need to have my batch file, upon opening,...
7993
Parag P. Doke
paragpdoke@...
Oct 14, 2008 8:32 am
Hi Chris. Can you please post contents of the text file in question ? That will make it a lot easier for people to help you out. -Parag ... -- Parag P. Doke ...
7994
Theodorik OBroin
theodorik.obroin@...
Oct 14, 2008 9:01 am
Hi Chris, Here's how I would do this, there are three files: 1) test.cmd 2) batchinput.txt 3) someotherbatchfile.cmd test.cmd runs, and pulls in the numbers...
On Tue, 14 Oct 2008 02:28:48 -0000, "cwb212001" <cwb212001@...> ... You were almost there. The double quotes below eliminate any trailing spaces if they...
I think I found my answer: ~=~=~=~=~=~=~=~=~=~=~=~=~ @echo off if NOT %~z1 == %~z2 ( echo DO NOTHING ) ELSE ( echo DO ROBOCOPY ) ~=~=~=~=~=~=~=~=~=~=~=~=~ I'll...
... From memory XXcopy can do that - it seems Robocopy does not have that feature. http://www.xxcopy.com Your batch syntax will only work if you can create a...
I am trying to write a batch file that would replace a substring inside a file with another substring, and than execute that file using isql utility. I did...
On Mon, 27 Oct 2008 15:22:57 -0000, "AllaGelfand" <allagelfand@...> ... SED is a stream editor that utilised regular expressions. GNUSED is the...
8000
Parag P. Doke
paragpdoke@...
Oct 28, 2008 11:26 am
What was suggested by Mic (using SED) is definitely a better option. Here's my attempt at creating a plain batch to replace strings. It hasn't been tested for...
this is the code I am trying to make to work, but for some reason the final part is failing on me: @echo off cls set /p DBNAME=Please enter Database name: if...
Dear Parag, Thank you! How do you, actually, execute this file? What parameters does it require. thank you, Alla ... of ... <allagelfand@...> ... inside ... ...
I decided to try SED to find and replace a string in my file, however the command completely messes up my original format. I used the following command: ...
On Tue, 28 Oct 2008 13:20:11 -0000, "AllaGelfand" <allagelfand@...> ... Try this untested snippet, based on your code: @echo off cls ... set /p...
I'll definitely try! How do I make sure the changes will take place inside the file?I noticed that sometimes it works on a screen, but nothing gets changed...
On Tue, 28 Oct 2008 16:53:34 -0700 (PDT), Alla Gelfand ... You'd have to show the code you used - and also a sample of the sql file so we can duplicate the...
You can find an article about this, checking knowledge base article KB007 in http://www.steppingsoftware.com/ssportal/Support/tabid/57/Default.aspx I hope you...
I changed the file to the following, but it still doesn't work that well. I am attaching the sql file, I am trying to parse. @echo off cls ... set /p...