Initial commit for v1
This commit is contained in:
17
parser.awk
Normal file
17
parser.awk
Normal file
@ -0,0 +1,17 @@
|
||||
BEGIN {
|
||||
printit = 0
|
||||
}
|
||||
|
||||
{
|
||||
if (printit == 1) {
|
||||
print
|
||||
printit = 0
|
||||
}
|
||||
if (/%FILENAME%/) {
|
||||
printf "|"
|
||||
printit = 1
|
||||
}
|
||||
if (/%NAME%/ || /%VERSION%/) {
|
||||
printit = 1
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user