blob: 1e7397a564cad4deef05d5b54f654a4077b6be4c (
plain)
1
2
3
4
5
6
7
|
#!/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@} "$@"
|