blob: 69264086597187123f117f12457a2f932943b048 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
BEGIN {
FS="|";
}
BEGINFILE {
has_card = 0;
}
# Flashcard headings
/^\*+ .*:fc:.*$/ {
has_card = 1;
}
ENDFILE {
if (has_card == 1) {
print FILENAME;
}
}
|