SwiftGit2/script/targets.awk
2014-11-08 08:41:22 -05:00

13 lines
168 B
Awk

BEGIN {
FS = "\n";
}
/Targets:/ {
while (getline && $0 != "") {
if ($0 ~ /Tests/) continue;
sub(/^ +/, "");
print "'" $0 "'";
}
}