mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-28 12:02:00 +08:00
11 lines
262 B
Bash
Executable File
11 lines
262 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# mihomo/clash search for geoip.dat in $HOME/.config/mihomo
|
|
export HOME="$JP_TARGET_WD"
|
|
# xray search for geoip.dat in $PWD
|
|
cd "$JP_TARGET_WD"
|
|
|
|
# $HOME is unset by procd and $PWD is reset to / by procd,
|
|
# that's why we need this mini "jail"
|
|
exec "$@"
|