Am Mittwoch, 28. September 2022 schrieb jindam, vani: > > It may be necessary to disable SENSIBLE-BROWSER. echo > > $SENSIBLE-BROWSER to see if it's loaded. > > $ echo $SENSIBLE-BROWSER > it shows "-BROWSER"
Shell variables can't contain "-", so this is probably a typo. Then the shell replaces "$SENSIBLE" with nothing because it is not set and prints the string "-BROWSER". $ echo $SENSIBLE-BROWSER -BROWSER Try "_" (underscore) instead. That way the string "SENSIBLE_BROWSER" is interpreted by the shell as one whole variable name. $ echo $SENSIBLE_BROWSER It ist also good to copy the command and the output completey into mails so everybody can exactly see what happened. HTH Kind regards, Stefan