openwrt_helloworld/luci-app-openclash/root/usr/share/openclash/openclash_urlencode.lua
2024-09-25 05:44:37 +08:00

13 lines
201 B
Lua

#!/usr/bin/lua
require "nixio"
require "luci.util"
require "luci.sys"
local HTTP = require "luci.http"
local url = arg[1]
if not url then os.exit(0) end
print(HTTP.urlencode(url) or url)
os.exit(0)