1 Star 0 Fork 0

irreallich/bashrc.d

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
loader 672 Bytes
一键复制 编辑 原始数据 按行查看 历史
wanghongjie02 提交于 2021-07-06 18:54 . 转移dot配置文件到gitee
#!/bin/sh
function hj_bashrc_set_rcpath()
{
if [ -n "$1" ];then
hj_rcpath="$1"
else
hj_rcpath="$(dirname "$0")"
fi
}
function hj_bashrc_loader()
{
local dir i
for dir in ${hj_rcpath}; do
for i in "${dir}"/*.*; do
if test -x "$i"; then
printf "\033[KLoading %s..." "$i"
if source "$i"; then
printf " ok.\r\n"
else
echo " failed."
fi
fi
done
done
}
#if [[ $- = *i* ]]; then
# hj_bashrc_set_rcpath "$@"
# hj_bashrc_loader "$@"
#fi
hj_bashrc_set_rcpath "$@"
hj_bashrc_loader "$@"
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/irreallich/bashrc.d.git
git@gitee.com:irreallich/bashrc.d.git
irreallich
bashrc.d
bashrc.d
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385