source ~/.bashrc

每次修改.bashrc后,使用source ~/.bashrc(或者 . ~/.bashrc)就可以立刻加载修改后的设置,使之生效。

原文地址:https://www.cnblogs.com/yibeimingyue/p/11798382.html

时间: 2024-10-29 10:30:49

source ~/.bashrc的相关文章

source ~/.bashrc 什么意思

source:使当前shell读入路径为filepath的shell文件并依次执行文件中的所有语句,通常用于重新执行刚修改的初始化文件,使之立即生效,而不必注销并重新登录 https://www.cnblogs.com/ThatsMyTiger/p/6865817.html https://www.cnblogs.com/pkufork/p/linux_source.html ~/是进入当前用户的主目录.比如我用的用户名是USER 那么命令 cd ~/ 就进入了/home/USER 目录. .b

source ~/.bashrc virtualenvwrapper 出错

我在阿里云上安装 virtualenvwrapper  配置完bashrc  ,  source .bashrc 的时候出现如下错误: [email protected]:~# source ~/.bashrc/usr/bin/python: No module named virtualenvwrappervirtualenvwrapper.sh: There was a problem running the initialization hooks. If Python could not

linux 在~/.bash_profile配置完oracle每次都要source 才能使用的问题

$cd ~ $vi .bashrc 增加以下环境配置内容: export ORACLE_BASE=/opt/oracle/app export ORACLE_HOME=/opt/oracle/app/oracle/product/11.2.0/dbhome_1 export PATH=/opt/oracle/app/oracle/product/11.2.0/dbhome_1/bin:$PATH export ORACLE_SID=orcl export PS1='[\[email protec

【EDA开发环境】 CentOS bashrc设置

# .bashrc # Source global definitions if [ -f /etc/bashrc ]; then . /etc/bashrc fi # User specific aliases and functions ################################################# # Alias Setting # Normal Commad ###############################################

.bashrc文件是干什么的

使用man bash命令查看到的联机帮助文件中的相关解释如下:.bashrc - The individual per-interactive-shell startup file. 这个文件主要保存个人的一些个性化设置,如命令别名.路径等.下面是个例子: # User specific aliases and functions PATH="/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin" LANG=zh_CN

Linux bashrc和profile的用途和区别

导读 使用终端ssh登录Linux操作系统的控制台后,会出现一个提示符号(例如:#或~),在这个提示符号之后可以输入命令,Linux根据输入的命令会做回应,这一连串的动作是由一个所谓的Shell来做处理.Shell是一个程序,最常用的就是Bash,这也是登录系统默认会使用的Shell. • 对于个别用户的启动配置文件 用户HOME(家)目录/.bashrc head -1 ~/.bashrc # ~/.bashrc: executed by bash(1) for non-login shell

系统变量写在.bash_profile和.bashrc的区别

今天配置一个代理,正儿八经的把我搞蒙了,不就是export http_porxy=xxx.xxx.xxx.xxx:xxxx 然后重启服务service network restart ,依然连接不了外网! 前提:我是通过ssh连接过去的 1>当我把环境变量写到.bashrc,重启服务,不生效 2>当我把环境变量写到.bash_profile的时候,重启服务,生效 3>当我把环境变量写到.bashrc,if判断之前的时候 如: # .bashrc export http_proxy=192

bashrc,bash_profile和/etc/profile

bashrc,bash_profile和/etc/profile 最近老出现在shell里面能跑的程序用鼠标双击app去不能跑.究其原因是因为环境变量的问题. 在类unix系统中一般有三个bash配置文件: ~/.bashrc 当前用户使用的配置文件 ~/.bash_profile 当前用户使用的配置文件 /etc/profile 所有用户都会继承的环境配置文件 我们需要搞清楚/etc/profile, ~/.bash_profile和~/.bashrc这几个文件的加载顺序. 一般来说~/.ba

ubuntu下关于profile和bashrc中环境变量的理解

(0) 写在前面 有些名词可能需要解释一下.(也可以先不看这一节,在后面看到有疑惑再上来看相关解释) 启动bash shell:就是启动一个bash shell进程,通常可以理解为打开一个终端.需要注意的是如果你在终端输入sh后会发现自己又进入另一个交互式界面,这个时候其实fork了一个shell 子进程,如果你在这个交互式界面又输入了一次sh,那么相当于fork的shell子进程又fork了一个shell子进程,这个时候就启动了三个bash shell进程. 输入exit或者ctrl-d可以退