mirror of
https://gitee.com/iresty/apisix.git
synced 2024-12-05 05:27:35 +08:00
9 lines
154 B
Bash
9 lines
154 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
target_file=$1
|
||
|
|
||
|
# 这里的-f参数判断$target_file是否存在
|
||
|
if [ ! -f "$target_file" ]; then
|
||
|
cp ./conf/config.yaml $target_file
|
||
|
fi
|