bettola/assets/scripts/bin/chgrp.lua

10 lines
190 B
Lua

-- /bin/chgrp - Change file group.
local group = arg[1]
local path = arg[2]
if not group or not path then
return "chgrp: missing operand"
end
return bettola.chgrp(context, group, path)