bettola/assets/scripts/bin/scp.lua

9 lines
183 B
Lua

local source = arg[1]
local destination = arg[2]
if not source or not destination then
return "usage: scp source destination"
end
return bettola.scp(context, source, destination)