I need a text editor that will allow me to make changes to all 65
files simultaneously. For example, if I wanted to add the same lines
of text to all 65 files, I want to do so in one fell swoop, without
having to open each and every file and manually add the lines of text
65 times.
Anyone know any good software that'll give me this capability? Needs
to work on Windows NT and 2000. Thanks in advance.
--
Dale Ross
http://HarborWebs.com:8080 /
BBS - http://HarborWebs.com:8081 telnet://HarborWebs.com/
"Dave Pink" <tron...@msn.com> wrote in message
news:fa516b59.0110...@posting.google.com...
Try UltraEdit, which is great for this sort of thing:
--
DE
Intranet Works
Law Office and Small Business Technology Consulting & Integration
[Please direct all replies to the newsgroup]
http://www.delorie.com/djgpp/getting.html
http://sources.redhat.com/cygwin/
--
Mark H. Wood, Lead System Programmer mw...@IUPUI.Edu
Make a good day.
It's worked well for me.
Chris Janus
Dave Pink <tron...@msn.com> wrote in article
<fa516b59.0110...@posting.google.com>...
A decent shell to iterate over the list of files would also help and for
that, may I suggest my Hamilton C shell, which includes both a great shell
and sed (and lots of other cool stuff). More info and a free demo version
are available on my website at http://www.hamiltonlabs.com/cshell.htm. I am
the author, so if there are any questions, just let me know.
Regards,
Nicki Hamilton
Nicole Ashley Hamilton KD1UJ hami...@hamiltonlabs.com
http://www.hamiltonlabs.com Phone 978-440-8307 FAX 978-440-8308
Hamilton Laboratories, 61 Fairbank Road, Sudbury, MA 01776-1620, USA
I use GNU Emacs under Cygwin on WindowsNT & 2K; this allows me to use
the same editor environment I use for Unix.
"Dave Pink" <tron...@msn.com> wrote in message
news:fa516b59.0110...@posting.google.com...
Sounds like you need something that lets you create a template, then
use the template to regenerate your 65 files whenever you modify the
template.
This is an easy little programming task - have someone on your staff
create a little applet that will take a template from one text file
and a set of data from a CSV or flat text file and merge the two
to generate your 65 files. Hell, send me $100 and I'll do it for you.
This can also be done from Excel if you are very familiar with
Excel macro programming. Put your Template in one cell, your
data in a table, then use an Excel macro to generate the text
files you need. In my case it would be much faster to write a
little Delphi program than to figure out how to do it with Excel,
but I know it _can_ be done with Excel simply because I have
used an Excel spreadsheet created by someone else that did this.
Rob
--
"rob.stow" is my name, "sk.sympatico.ca" is my mail host.
Ask mommy for help if you can't figure it out from there.
----------------------------------------------------------
Messages from these spam hosts are automatically deleted:
yahoo.com, hotmail.com, excite.com
For example, to insert "A new line" after line 6 in all files:
for f in *
do
echo '6a
A new line
.
wq'|ex $f
done
In article <9r18nu$o6o$1...@hercules.iupui.edu>,
Mark H. Wood <mw...@mhw.ULib.IUPUI.Edu> wrote:
--
Jim Cochrane
j...@dimensional.com
[When responding by email, include the term non-spam in the subject line to
get through my spam filter.]