13 lines
281 B
Bash
13 lines
281 B
Bash
#!/bin/bash
|
|
|
|
update_reality_dest(){
|
|
local script_dir=$(cd "$(dirname "$0")"; pwd)
|
|
local config_dir="$script_dir/../conf"
|
|
|
|
local domain=$1
|
|
sed -i "s/你的reality_dest/$domain/g" "$config_dir/config.json"
|
|
echo "修改realty_dest成功"
|
|
}
|
|
|
|
update_reality_dest $1
|