all,
awk under dos.
attempting to write a simple awk program
i have a file with data (lista.txt) and want to put certain data from it into another file (testb.txt)
i thought the code would be:
ultimately this will be placed in a .bat file. any guidance would be greatly appreciated.
regards,
longhair
awk under dos.
attempting to write a simple awk program
i have a file with data (lista.txt) and want to put certain data from it into another file (testb.txt)
i thought the code would be:
Code:
awk {if($1!=192)} lista.txt print$1>>testb.txt
regards,
longhair