mirror of
https://github.com/opnsense/src.git
synced 2026-04-26 00:27:08 -04:00
10 lines
217 B
Bash
Executable file
10 lines
217 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Use C locale to ensure AWK string comparisons always produce
|
|
# a stable sort order.
|
|
|
|
BHND_TOOLDIR="$(dirname $0)/"
|
|
|
|
LC_ALL=C; export LC_ALL
|
|
|
|
"${AWK:-/usr/bin/awk}" -f "$BHND_TOOLDIR/nvram_map_gen.awk" $@
|