Initial commit for v1

This commit is contained in:
2022-02-13 12:18:26 +01:00
parent 1dc4a30084
commit 727392393e
4 changed files with 287 additions and 89 deletions

17
parser.awk Normal file
View File

@ -0,0 +1,17 @@
BEGIN {
printit = 0
}
{
if (printit == 1) {
print
printit = 0
}
if (/%FILENAME%/) {
printf "|"
printit = 1
}
if (/%NAME%/ || /%VERSION%/) {
printit = 1
}
}