指定环境变量...bash,怎么做

指定环境变量...bash,怎么做

我下载了软件“github SADIT”,其中提到要指定环境变量....在 bash 中,即以下

在此处输入图片描述

所以提到了要打开.profile 和执行的操作。我对 bash 和 .profile 了解不多,但可以通过打开文件nano\.profile并添加下图中显示的最后一行

在此处输入图片描述

然后尝试通过给定的命令运行软件,./cmdsadit -h但随后显示以下内容

controllab@controllab-H81M-S1:~$ cd sadit
controllab@controllab-H81M-S1:~/sadit$ ./cmdsadit -h
Please set <SADIT_ROOT> variable in bash.
controllab@controllab-H81M-S1:~/sadit$ 

然后我使用命令nano bash并复制粘贴图 1 中显示的总数,但随后它也显示

controllab@controllab-H81M-S1:~$ cd sadit
controllab@controllab-H81M-S1:~/sadit$ ./cmdsadit -h
Please set <SADIT_ROOT> variable in bash.
controllab@controllab-H81M-S1:~/sadit$ 

该怎么办

答案1

使用出口命令

例子:

user$ export SADIT_ROOT='/home/sadit'
user$ echo $SADIT_ROOT
/home/sadit

相关内容