Added missing semicolons

This commit is contained in:
Héctor Molinero Fernández
2020-03-01 17:43:44 +01:00
parent 8a3b2625e2
commit 1aa3e47232

View File

@@ -3,7 +3,7 @@
BEGIN {for (v in ENVIRON) {
if (v !~ /^(_|AWKPATH|AWKLIBPATH|TERM|SHLVL|PWD|HOME|SHELL|HOSTNAME|UID|USER|GID|GROUP)$/) {
gsub(/[^0-9A-Za-z_]/, "_", v);
gsub(/'/, "'\\''", ENVIRON[v])
print("export "v"='"ENVIRON[v]"'")
gsub(/'/, "'\\''", ENVIRON[v]);
print("export "v"='"ENVIRON[v]"'");
}
}}