dotfiles/ReadMe.md

24 lines
534 B
Markdown
Raw Normal View History

2025-04-18 12:07:23 +08:00
# 快速上手
请把下面的代码添加到你的`.bashrc`
```bash
2025-04-19 16:09:17 +08:00
#========================================
# user config
#========================================
2025-04-18 12:07:23 +08:00
# ~/.bashrc (用户实际使用的文件)
# 1. 加载公共配置
if [ -f ~/.bashrc_common ]; then
source ~/.bashrc_common
2025-04-19 16:09:17 +08:00
else
echo "Can't find ~/..bashrc_common";
2025-04-18 12:07:23 +08:00
fi
# 2. 加载主机特定配置(根据主机名自动选择)
2025-04-19 16:09:17 +08:00
HOST_RC="$HOME/.bashrc_host"
2025-04-18 12:07:23 +08:00
if [ -f "$HOST_RC" ]; then
source "$HOST_RC"
2025-04-19 16:09:17 +08:00
else
echo "Can't find $HOST_RC";
fi