本文介绍了为单个命令取消设置的环境变量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在bash中,您可以通过设置环境变量单个命令
In bash, you can set an environmental variable for a single command using
FOO=bar somecommand
如果你想的取消设置的单个命令变量?
推荐答案
从技术上讲,他们没有环境变量,直到有人导出
取值他们。但你至少可以将其设置为空:
Technically, they're not environment variables until someone export
s them. But you can at least set them to empty:
FOO= some command
如果从环境中删除它们就足够了,你可以使用 ENV
:
If removing them from the environment is enough, you can use env
:
env -u FOO somecommand
这篇关于为单个命令取消设置的环境变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!