rpg16-cd2025/short_description.awk
2021-07-24 16:59:18 +00:00

16 lines
184 B
Awk

BEGIN {
header_count = 0;
line_count = 0;
}
/^#/ {
header_count++;
}
!/^#/ {
if (header_count == 1 && line_count == 0) {
print;
line_count++;
}
}