On Sun, Sep 22, 2019 at 06:53:08PM +0200, prx wrote:
> * joshua stein <j...@openbsd.org> le [22-09-2019 11:15:53 -0500]:
> > Do you have XDG_CONFIG_HOME, XDG_DATA_HOME, or XDG_CACHE_HOME set in 
> > your environment?
> > 
> 
> None of them : 
> 
>       $ echo $XDG_CONFIG_HOME - $XDG_DATA_HOME - $XDG_CACHE_HOME
>       - -
Technically, that does not prove they're unset:

        $ XDG_CONFIG_HOME=
        $ echo $XDG_CONFIG_HOME

They most certainly are, but to really check whether a variable is unset
(so not even set to the empty string), I'd do

        $ set | grep -e ^XDG_
        XDG_CONFIG_HOME=
        $

Reply via email to