~dricottone/my-utils

my-utils/core/start-at -rwxr-xr-x 381 bytes
a5400e39Dominic Ricottone Starting point for cryptographic utilities 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/awk -f

# start-at
# ===========
# Usage: <command> | start-at -v pattern='^-+$'
#
# After a pattern is matched, re-print.

BEGIN {
  if (pattern == "" || inclusive !~ /^[01]?$/) {
    print "Usage: start-at -v pattern=PATTERN -v inclusive=0|1"
    exit 1
  }
  matched=0
}
{
  if (matched==1) print;
  if ($0 ~ pattern) {
    matched=1;
    if (inclusive==1) print;
  }
}