0
点赞
收藏
分享

微信扫一扫

Linux之环境变量

 

bash下:

设置:
export 变量名称=变量值

删除:
unset 变量名称

 

csh下:

设置:
setenv 变量名 变量值

删除:
unsetenv 变量名

 


举报

相关推荐

0 条评论