Path: blob/main/tests/sys/cddl/zfs/include/translatecommands.awk
105221 views
#! /usr/bin/awk -f
BEGIN {
print "# This file is autogenerated from commands.txt. Do not edit"
cmdstring = "export CMDS=\""
cmdch = 1
cmd_idx=0
}
# Strip comments
{
gsub(/#.*/, "", $0)
}
# Strip blank lines
/^[ ]*$/ {
next
}
# Process remaining lines
{
gsub(/%%STFSUITEDIR%%/, stfsuitedir, $1)
fullcmd = $1
cmdname = $1
gsub(/.*\//, "", cmdname)
CMDNAME = toupper(cmdname)
allcmds[cmd_idx] = CMDNAME
cmd_idx += 1
printf "export %s=\"%s\"\n", CMDNAME, fullcmd
}
# Print CMDS
END {
print ""
printf "export CMDS=\""
for (idx in allcmds)
printf "$%s ", allcmds[idx]
print "\""
}