17 Star 82 Fork 2

厦门云视听信息技术有限公司/ABLMediaServer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
copy_app_and_libs.sh 555 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhichao281@163.com 提交于 2023-08-17 21:05 +08:00 . 更新了编译
#!/bin/bash
# 要拷贝的应用程序路径
APP_PATH=/home/admin-nx/ABLMediaServer/Bin/ABLMediaServer
# 目标文件夹路径,您可以根据需要修改
DEST_FOLDER=/home/admin-nx/ABLMediaServer/Bin
# 获取应用程序所依赖的库列表
LIBS_LIST=$(ldd "$APP_PATH" | awk '{print $3}')
# 创建目标文件夹
mkdir -p "$DEST_FOLDER"
# 拷贝应用程序及其依赖的库到目标文件夹
cp "$APP_PATH" "$DEST_FOLDER"
for lib in $LIBS_LIST; do
if [ -f "$lib" ]; then
cp "$lib" "$DEST_FOLDER"
fi
done
echo "拷贝完成!"
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/yunshiting/ABLMediaServer.git
git@gitee.com:yunshiting/ABLMediaServer.git
yunshiting
ABLMediaServer
ABLMediaServer
master

搜索帮助