rwx/sh/lint/gawk.sh

14 lines
177 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}" \
2025-08-03 00:13:39 +02:00
--assign action="lint" \
--assign target=""
2025-08-02 23:30:12 +02:00
}