~dricottone/my-utils

ref: 437e26d0c9796782bf0e6639b98293fa8eb44d5a my-utils/core/start-at -rwxr-xr-x 381 bytes
437e26d0Dominic Ricottone Minor change 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;
  }
}