blob: 9f9801c43e88ee8957779b3cf7738085b741ddf7 [file] [log] [blame] [raw]
local args = {...}
if #args < 1 then
print "You have to specify which arguments to unset!"
else
for _, k in ipairs(args) do
os.setenv(k, nil)
end
end