Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图variables在我的 bash shell 中创建它,我可以随时使用它。更具体地说,我想创建一个可以存储文件夹路径的变量,例如:
variables
mypath = `pwd`
但是,我不能执行以下操作:
cd $我的路径
我该如何解决这个问题?另外,我想存储这个变量,以便在我重新启动系统后可以使用。我是否将其存储在.bashrc文件中?
.bashrc
不要在赋值中使用空格,即
mypath=`pwd`
此外,如果您希望您的变量全局可用,您可以使用该export命令。示例:export mypath="pwd"。
export
export mypath="pwd"
如果您希望变量在重新启动后仍然存在,那么您确实需要将其添加到~/.bashrc.
~/.bashrc
您可以使用nano ~/.bashrc并添加export mypath="pwd"到文件末尾来执行此操作
nano ~/.bashrc