Shell – How to make DISPLAY variable undefined

environment-variablesshell

I am using Ubuntu, but I think this applies to all Linux.

What's the command to set DISPLAY to be undefined in the shell?

Best Answer

You want the unset command: unset DISPLAY

Related Question