diff options
Diffstat (limited to 'nocompile/bin')
-rwxr-xr-x | nocompile/bin/XuntilY.awk | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/nocompile/bin/XuntilY.awk b/nocompile/bin/XuntilY.awk new file mode 100755 index 0000000..6334d31 --- /dev/null +++ b/nocompile/bin/XuntilY.awk @@ -0,0 +1,16 @@ +#!/bin/sh +if [ "_$3" = "_" ];then + count=1 +else + count="$3" +fi +awk ' +BEGIN {counter='$count'} +/'$1'/, /'$2'/{ + print $0; + if($0 ~ /'$2'/) { + counter--; + } + if(counter == 0) {nextfile} +} +' |