Я изо всех сил пытался запустить AWK под Windows. Есть проблемы с цитированием и разделителями пути. Мое окончательное решение состоит в том, чтобы «позволить AWK лететь свободно», то есть свободно от командной строки. Я понимаю, что он был разработан как клей для командной строки в стиле Unix juju, но я просто хотел использовать его как язык сценариев.
Все мои сценарии AWK содержат список целей и определенный выходной файл. Их можно запустить, дважды щелкнув по соответствующему пакетному файлу DOS:
: AWK.BAT - place in the same directory as GAWK
@echo off
:Check %1 in not null
If [%1]==[] (
cls
Echo No parameters passed
goto End
)
: Change to the parameter file location
cd /D "%~dp1"
: Set PrintFile - this will be the name of the script (not the target file) with ".out"
Set PrintFile=%~nx1.out
:Run AWK
: -v PrintFile to allow renaming of output file
: -f ScriptFile.awk the program
: > Redirects output to a known destination
cls
P:\MyPrograms\EDITORS\Addins\gawk\gawk.exe -v PrintFile=%PrintFile% -f %* >%PrintFile%
:End
pause
Пример моих сценариев AWK представлен ниже (извлеките все строки с помощью :: tab и напечатайте их):
# AWK Template
BEGIN{
## Hard Code Target Files - Unix paths with / separators ##
# Realtive paths from the location of ScriptFileName.awk
# These will be added to the end of the ARG array - after any command line target files
AddTarget("../APEdit.ahk")
## Hard Code Output Files - WinDos paths with \\ separators ##
# Realtive paths from the location of ScriptFileName.awk
# Default is ScriptFileName.awk.out passed in as a variable called PrintFile
# PrintFile will be copied to OutputFile after processing using the END section
OutputFile = "Keys.txt"
# Set input record sep and field sep
RS="\n"
FS=" "
# Set output RS and FS
ORS="\n"
OFS=" "
# Write a header
print "Key assignments from the source code"
print " "
}
## MIDDLE - Once per matching record! ##
# Find autohotkey key definitions
/::\t/ {
print $0
}
END{
## Rename output files
if (OutputFile) {
system("Copy /Y " PrintFile " " OutputFile)
}
}
## Functions ##
function AddTarget(FN){
# Need to check file exists
if (FileExists(FN)){
ARGV[ARGC] = FN
ARGC ++
}
}
function FileExists(FN) {
if ((getline < FN) > 0) {
close(FN);
return 1
} else {
print "Target file not found " FN > "error.awk.txt"
return ""
}
}
Вы можете видеть, что это определяет цель ввода в сценарии и определяет конечную цель вывода в сценарии. Он использует временный файл «.out», чтобы избежать большого перенаправления печати, копируя файл в нужный вывод в разделе END скрипта.
Я связал файлы AWK с этим пакетным файлом и добавил опцию в моем редакторе для отправки файлов AWK в пакетный файл.
С уважением