5 lines
121 B
Awk
5 lines
121 B
Awk
!/^[[:space:]]*#/ && / #/ {
|
|
idx = index($0, " #")
|
|
if (idx != TARGET) print NR, "col=" idx, substr($0, 1, 80)
|
|
}
|