mirror of
https://gitee.com/amber-ce/amber-ce-bookworm.git
synced 2025-05-08 17:19:50 +08:00
42 lines
1019 B
Bash
Executable File
42 lines
1019 B
Bash
Executable File
#!/bin/bash
|
|
# 安全读取配置文件的推荐方式
|
|
read_config() {
|
|
local config_file="$1"
|
|
|
|
# 检查文件是否存在
|
|
if [ ! -f "$config_file" ]; then
|
|
echo "Error: Config file $config_file not found" >&2
|
|
return 1
|
|
fi
|
|
|
|
# 处理并加载配置
|
|
source <(
|
|
sed -nE '
|
|
# 跳过注释和空行
|
|
/^[[:space:]]*#/d # 删除注释行
|
|
/^[[:space:]]*$/d # 删除空行
|
|
# 转换 @VAR@=value 格式
|
|
s/^@([^@]+)@=(.*)$/\1=\2/p
|
|
' "$config_file"
|
|
)
|
|
}
|
|
|
|
pushd $(dirname $(realpath $0))
|
|
read_config "ace-base.config"
|
|
|
|
# 访问变量
|
|
echo "Package Name: $PKG_NAME"
|
|
echo "Host Name: $HOST_NAME"
|
|
echo "Executable Name: $EXEC_NAME"
|
|
echo "Pretty Name: $PRETTY_NAME"
|
|
|
|
if [[ -z "$1" ]];then
|
|
echo "Need TARGET DIR"
|
|
exit
|
|
fi
|
|
target_dir="${1}" # 要处理的目标目录
|
|
|
|
bash replacer.sh ${target_dir}/
|
|
bash linker.sh ${target_dir}/
|
|
cd ${target_dir}/opt/apps/$PKG_NAME/files && bash build-container.sh $(uname -m)
|
|
popd |