当前位置:   article > 正文

export: command not found

export: command not found.
linux下非root执行export命令出现 export: command not found 错误
[root@mysqlserver bin]# csh
[root@mysqlserver /bin]# export
export: Command not found.
[root@mysqlserver /bin]#

export是shell的内部命令,寻找规则与PATH变量无关。
重点检测SHELL变量是不是bash,如下
查看SHELL变量, echo $SHELL
[root@mysqlserver bin]# echo $SHELL
/bin/bash
[root@mysqlserver bin]#

如果是 
/bin/csh

那么执行bash命令启动bash,或者在对应的脚本前执行bash命令。 

[root@mysqlserver bin]# bash
[root@mysqlserver bin]# export AAA=nn
[root@mysqlserver bin]#

具体指定用户的shell环境的配置文件在/etc/passwd 中
[root@mysqlserver bin]# cat /etc/passwd
root:x:0:0:root:/root:/bin/bash
~~~~

修改对应的shell配置即可。

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/30246290/viewspace-1976507/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/30246290/viewspace-1976507/

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/260608
推荐阅读
相关标签
  

闽ICP备14008679号