1
0
mirror of https://github.com/zplug/zplug synced 2025-04-30 13:17:57 +02:00
zplug/misc/contrib/read_cache.awk
2016-08-07 17:34:29 +09:00

15 lines
119 B
Awk

BEGIN {
flag = 0;
}
{
if ($0 == "return 0") {
flag = 1;
next;
}
}
flag {
print $0;
}