12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- BEGIN {
- do_print = 0
- }
- /making Makefiles in / {
- pos = match($NF, PATTERN)
- if (pos == 1) {
- do_print = 1
- print
- next
- }
- else {
- do_print = 0
- next
- }
- }
- /cleaning in / {
- pos = match($NF, PATTERN)
- if (pos == 1) {
- do_print = 1
- print
- next
- }
- else {
- do_print = 0
- next
- }
- }
- /including in / {
- pos = match($NF, PATTERN)
- if (pos == 1) {
- do_print = 1
- print
- next
- }
- else {
- do_print = 0
- next
- }
- }
- /depending in / {
- pos = match($NF, PATTERN)
- if (pos == 1) {
- do_print = 1
- print
- next
- }
- else {
- do_print = 0
- next
- }
- }
- /making All in / {
- pos = match($NF, PATTERN)
- if (pos == 1) {
- do_print = 1
- print
- next
- }
- else {
- do_print = 0
- next
- }
- }
- /.*/ {
- if (do_print) print
- }
|