7 lines
204 B
Bash
7 lines
204 B
Bash
#!/bin/sh
|
|
|
|
# We can add the current directory to the front of PATH so that
|
|
# awk will invoke gawk (rather than mawk etc.).
|
|
# We use this to work around systems with awk != gawk.
|
|
|
|
exec ${AWK:-@GAWK@} "$@"
|