Files
GseTDDUebungKCLR/database/install/config.awk
Riley Schneider b732d8d4b5 Initial Commit
2025-12-03 16:38:10 +01:00

14 lines
367 B
Awk

BEGIN {
# ORS="\\r\\n";
# SUBSTIT = "\\\\xamppcoffee";
# DIR = "D:\\xampp";
# server_cmd = "D:\\xampp\\install\\server.xml";
while (getline < CONFIG) {
sub(SUBSTIT,DIR,$0);
print $0 > CONFIGNEW
}
# print "@rem Installation Program, second part" > "D:\\xampp\\install\\inst.bat"
# D:\xampp\install\awk -v DIR = "C:\\xampp" -f D:\xampp\install\test.awk
}