NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
## 系统层面 /etc/profile /etc/bashrc ## 用户层面(用户目录下) .bash_profile .bashrc .cshrc (csh) 即刻生效 ``` source .bashrc ``` ## 当前会话 bash ``` export h=Hello export h="$h World" export h="$h@2019" export h="${h}August" echo $h ``` csh ``` setenv h Hello setenv h "$h World" setenv h "$h@2019" setenv h "${h}August" echo $h ``` 建议.bash_profile ``` if [ -f ~/.bashrc ]; then source ~/.bashrc fi ``` ## -bash-4.2$ cd /etc/skel cp .bash_logout .bash_profile .bashrc ~/