mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-08-03 07:59:09 +08:00
6 lines
134 B
Bash
Executable File
6 lines
134 B
Bash
Executable File
#!/bin/sh
|
|
|
|
uci_get_config() {
|
|
local key="$1"
|
|
uci -q get openclash.@overwrite[0]."$key" || uci -q get openclash.config."$key"
|
|
} |