Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

batchworld · Batch World

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 1612
  • Founded: Mar 5, 2000
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 7983 - 8012 of 8865   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
7983 foxidrive Send Email Sep 22, 2008
8:54 pm
On Tue, 16 Sep 2008 23:18:28 -0000, "cwb212001&quot; <cwb212001@...> ... Hyperterminal can't do it and a batch file can't read the serial port natively. A...
7984 umayxa3 Send Email Sep 22, 2008
11:25 pm
That's the ticket! Works perfect using /MIR /FFT Thanks! -Allen ... sees ... NAS...
7985 cwb212001 Send Email Sep 23, 2008
12:59 am
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...
7986 foxidrive Send Email Sep 23, 2008
1:58 am
On Tue, 23 Sep 2008 00:59:27 -0000, "cwb212001&quot; <cwb212001@...> ... By all means mention the name. People looking through the archives one day will want...
7987 sam20martin Send Email Sep 23, 2008
12:52 pm
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...
7988 cwb212001 Send Email Sep 24, 2008
1:28 am
Name of the software is Bill Redirect Serial to KB. ... take ... probably ... anyone's ... one day...
7989 Raja Sekhar
rajasn Send Email
Oct 5, 2008
1:53 pm
ReD Raja Sekhar On 17-Sep-08, at 4:48 AM, "cwb212001&quot; <cwb212001@...> wrote: Hey you guys have helped me before and I really appreciate it. I've got a...
7990 umayxa3 Send Email Oct 7, 2008
12:30 pm
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 ...
7991 Jeff Wood
proteanthread Send Email
Oct 13, 2008
7:39 am
Hi, You can see a list of my groups on Grouply at the link below. Maybe you'll find some you want to join. Jeff Here's the link: ...
7992 cwb212001 Send Email Oct 14, 2008
2:28 am
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@... Send Email
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@... Send Email
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...
7995 foxidrive Send Email Oct 14, 2008
9:52 am
On Tue, 14 Oct 2008 02:28:48 -0000, "cwb212001&quot; <cwb212001@...> ... You were almost there. The double quotes below eliminate any trailing spaces if they...
7996 umayxa3 Send Email Oct 14, 2008
10:28 am
I think I found my answer: ~=~=~=~=~=~=~=~=~=~=~=~=~ @echo off if NOT %~z1 == %~z2 ( echo DO NOTHING ) ELSE ( echo DO ROBOCOPY ) ~=~=~=~=~=~=~=~=~=~=~=~=~ I'll...
7997 foxidrive Send Email Oct 14, 2008
11:00 am
... 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...
7998 AllaGelfand Send Email Oct 27, 2008
3:23 pm
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...
7999 foxidrive Send Email Oct 27, 2008
9:52 pm
On Mon, 27 Oct 2008 15:22:57 -0000, "AllaGelfand&quot; <allagelfand@...> ... SED is a stream editor that utilised regular expressions. GNUSED is the...
8000 Parag P. Doke
paragpdoke@... Send Email
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...
8001 AllaGelfand Send Email Oct 28, 2008
1:20 pm
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...
8002 AllaGelfand Send Email Oct 28, 2008
1:22 pm
Dear Parag, Thank you! How do you, actually, execute this file? What parameters does it require. thank you, Alla ... of ... <allagelfand@...> ... inside ... ...
8003 AllaGelfand Send Email Oct 28, 2008
8:43 pm
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: ...
8004 foxidrive Send Email Oct 28, 2008
8:54 pm
On Tue, 28 Oct 2008 13:20:11 -0000, "AllaGelfand&quot; <allagelfand@...> ... Try this untested snippet, based on your code: @echo off cls ... set /p...
8005 foxidrive Send Email Oct 28, 2008
8:57 pm
On Tue, 28 Oct 2008 20:43:27 -0000, "AllaGelfand&quot; <allagelfand@...> ... C:\Progra~1\GnuWin32&#92;bin\sed.exe "s/APP_CONFIG/Substitute_CFG_DB_Name/g" ...
8006 foxidrive Send Email Oct 28, 2008
9:03 pm
On Wed, 29 Oct 2008 07:54:38 +1100, foxidrive <foxidrive@...> wrote: Change this line to ... this: call set newline=%%newline:%search%=%replace%%%...
8007 Alla Gelfand
AllaGelfand Send Email
Oct 28, 2008
11:53 pm
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...
8008 foxidrive Send Email Oct 29, 2008
12:14 am
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...
8009 Alla Gelfand
AllaGelfand Send Email
Oct 29, 2008
1:24 am
I'll attach them tomorrow! Thank you very much! ... From: foxidrive <foxidrive@...> Subject: Re: [BATCH WORLD] Batch file to Find and Replace a...
8010 giskier Send Email Oct 29, 2008
4:23 am
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...
8011 Alla Gelfand
AllaGelfand Send Email
Oct 29, 2008
1:48 pm
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...
8012 Alla Gelfand
AllaGelfand Send Email
Oct 29, 2008
1:56 pm
I ran the command again using the following syntax:   C:\PROGRA~1\GnuWin32&#92;bin>sed.exe -i "s/APP_CONFIG/Substitute_CFG_DB_Name/g"...
Messages 7983 - 8012 of 8865   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help