This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env -S awk -f | |
| # hidx = header index (zero indexed) | |
| # ridx = row index (zero indexed) | |
| # cidx = column index (zero indexed) | |
| # fidx = field index (used in conjunction with $<expr>) | |
| # Repeat a string n times. | |
| function repeat(t_count, t_str) { | |
| temp = "" |