rwx/sh/lint/gawk.sh

13 lines
153 B
Bash
Raw Normal View History

2025-08-02 23:30:12 +02:00
# gawk
#| gawk
rwx_gawk_lint() {
local file="${1}"
echo |
gawk \
--posix \
--lint="fatal" \
--file "${file}" \
--assign action="lint"
}