加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
update-ld.so.conf.sh 465 Bytes
一键复制 编辑 原始数据 按行查看 历史
skny 提交于 2024-11-18 13:55 . v0.43
#!/bin/sh
# Usage: $0 facilityname directory-to-append-to-ld.so-search-path
# Uses /etc/ld.so.conf.d if present, otherwise appends to /etc/ld.so.conf
facility=$1
libdir=$2
if test -d /etc/ld.so.conf.d; then
echo "Adding $libdir to /etc/ld.so.conf.d"
echo $libdir > /etc/ld.so.conf.d/$facility
exit 0
fi
if ! egrep \"^/${libdir} *$\" /etc/ld.so.conf &> /dev/null; then"
echo "Adding $libdir to /etc/ld.so.conf"
echo /$libdir >> /etc/ld.so.conf"
fi
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化