Summary: Hi, I have this problem that i want to parse each line of file 1 and 2 and then combine it side by side on a new file. say, file 3. example. if i have...
Summary: hey again! thx for the help at my last post! want to ask if there is some way i can read a .txt file line by line ignoring lines beginning with "::" t...
Summary: Hi, I need to compare 2 files using awk, file1 & file2 line by line. Field 5 in everyline of file1 should be compared in whole file2 & if match is fou...
Summary: Koshare, I wrote a Awk / Bash script to do what you are wanting to do. There may be a easier way or more streamlined... but this script works. I de...
Summary: Hello! Very new to awk I need to do the following... I have one file looking like this: Probe "AFX_1234_at1" Probe "AFX_554545_at1" Probe "AFX_34342_a...
Summary: I have one batch file that i need to create and then remove another batch file. I was using the format below echo "Code Here">>batch.bat however the ...
Summary: I'm trying to write a vbscript that will parse a text file line by line. if the contents of each line matches the filename of an actual file in anothe...
Summary: I found some very helpful articles on this site, but I'm having trouble with this one... Here is the applicable batch code: @echo off > %AppData%\PROG...
Summary: Open the file for input. Read each line into a text variable. Add the text variable to the list. Go back and read the next line till you get EOF. D...
Summary: I need some help making a batch file than can parse a text file containing data on each line. At the same time, it needs to discard any "non-English" ...
Summary: I'm trying to write a build script that will: 1. Minify JS and CSS files 2. Read them into variables 3. Insert those strings into HTML The first 2 ste...
Summary: Hi All, I've 2 files a.c and b.c How can I find which one is newer(datetime) among them using either batch file OR at command line Thanks, Srini ...
Summary: It's possible to do what you want, but it takes a bit of logic, and most of it comes from trying to determine which lines to pay attention to. Actuall...
Summary: Hello all i'm making a procedure, that executes me two files, 1.exe and 2.exe. the file 2.exe must me installed after 1.exe. What i have to do to exe...
Summary: Hi, I have this idea that I'd like to run passed you all to see if it's possible and hopefully get some help to achieve it :o) The t-------- Each day ...
Summary: How exactly are the files to be parsed? Parsing basically means that something is to be done to it by some sort of rules, without telling us what the ...
Summary: FINDSTR /E "***" %%A the following usage is incorrect as it treat %%A as file and actually try to open it. but i dont know why the above line DID actu...
Summary: Rodger, probably you have confused the string "Copied Files" in the batch as being a command. It is a subdirectory you should have created inside the ...
Summary: hey i'm just posting my eventual solution to this for the help of others down the road. i currently have no idea what vectors are but i actually solve...
Summary: So I am working on some SNMP scripting with a batch file and I need to be able to put the response from an SNMP query into a variable in my batch file...
Summary: Ola Jimenez, later I will explain my batch line by line, for now the following script should work for yoir job, @echo off & setlocal EnableDelayedExp...
Summary: Thank you very much for the response.. Based on the file name we need to segregate..File name specific. Eg. we have File A,File B,File C and folder F...
Summary: Hi gurus, I need to write a batch script to copy the files from first folder, that begin with a perticular string (say begin with test, having files t...
Summary: Hi M2 and mitchell311, To explain why the *correct* ultimate version is what I posted run the following sample batch @Echo Off Echo FileName is %* For...