mirror of
https://github.com/zhigang1992/ReactiveViewModel.git
synced 2026-01-12 22:51:31 +08:00
13 lines
167 B
Awk
13 lines
167 B
Awk
BEGIN {
|
|
FS = "\n";
|
|
}
|
|
|
|
/Targets:/ {
|
|
while (getline && $0 != "") {
|
|
if ($0 ~ /Test/) continue;
|
|
|
|
sub(/^ +/, "");
|
|
print "'" $0 "'";
|
|
}
|
|
}
|