desperateUser
Technical User
All I need to do is pull the following from each file on another server
I'm trying to use a batch file using this syntax:
If I use "\\telecom\ROPS-DATA\ROP Archive 2005\Recent Logs\actual file name here.txt" it works. However I don't want to have to enter each file name in -- naturally.
I am a windoze gurl trying my hand at this command line stuff using a CMD window on Windows2000 Professional.
Pleeze help...
Thanks
Penelope
Code:
BEGIN { print "Section 235" >"sec_235.txt"}
/SECTION 235/ , /S570/ { print $0 >>"sec_235.txt" }
I'm trying to use a batch file using this syntax:
Code:
awk -f SEC235.awk "\\telecom\ROPS-DATA\ROP Archive 2005\Recent Logs\*.txt"
If I use "\\telecom\ROPS-DATA\ROP Archive 2005\Recent Logs\actual file name here.txt" it works. However I don't want to have to enter each file name in -- naturally.
I am a windoze gurl trying my hand at this command line stuff using a CMD window on Windows2000 Professional.
Pleeze help...
Thanks
Penelope