Delete the specified environment variable.
unset environment [ name ]
name |
Environment variable to unset. |
This command deletes the specified environment variable, so that it is no longer part of the environment.
To assign an environment variable an empty value, use the following command:
set environment name
If you do not specify name, the debugger deletes all environment variables.
(idb) set environment FOO (idb) show environment CPATH=/opt/intel/... FOO= FPATH=/opt/intel/... HISTCONTROL=ignoreboth HOME=/home/hal : (idb) unset environment FOO (idb) show environment CPATH=/opt/intel/... FPATH=/opt/intel/... HISTCONTROL=ignoreboth HOME=/home/hal :
Copyright © 2001-2011, Intel Corporation. All rights reserved.