mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-01-13 18:18:28 +08:00
10 lines
189 B
Bash
10 lines
189 B
Bash
|
#set -- "$1" "${2#file://*}"
|
||
|
local path=$(urldecode "$2")
|
||
|
path=${path/file:\/\//}
|
||
|
set -- "$1" "$path"
|
||
|
if [ "$path" ];then
|
||
|
CallProcess "$@"
|
||
|
else
|
||
|
CallProcess "$1"
|
||
|
fi
|