让cygwin启动时加载.bashrc
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
最近在做一些版本集成发布的工作,对cygwin环境做了简单的了解。
Linux工作环境下,我们都喜欢把命令别名,路径等个性化的设置写在~/.bashrc文件里面。
但是登录cygwin时,默认只加载home目录下的.bash_profile文件。下面的几种方法可以解决这个问题。
ln -s ~/.bashrc ~/.bash_profile
或者干脆把.bash_profile写成:
if [ -f ~/.bashrc ]
then
. ~/.bashrc
fi
还有一种方法是在/etc/profile文件里添加
source $HOME/.bashrc
总之就是为了在登录cygwin时,加载~/.bashrc
GitHub 加速计划 / li / linux-dash
6
1
下载
A beautiful web dashboard for Linux
最近提交(Master分支:4 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献1条内容
所有评论(0)