mirror of
https://github.com/NeoFlock/neonucleus.git
synced 2025-09-24 17:13:31 +02:00
20 lines
369 B
Lua
20 lines
369 B
Lua
local shell = require("shell")
|
|
|
|
local args = shell.parse(...)
|
|
if #args < 1 then
|
|
io.write("Usage: unalias <name>...\n")
|
|
return 2
|
|
end
|
|
local e = 0
|
|
|
|
for _,arg in ipairs(args) do
|
|
local result = shell.getAlias(arg)
|
|
if not result then
|
|
io.stderr:write(string.format("unalias: %s: not found\n", arg))
|
|
e = 1
|
|
else
|
|
shell.setAlias(arg, nil)
|
|
end
|
|
end
|
|
return e
|