Defaults

You can check the default ENVs by typing env in the terminal. It’s Dazzled if all are printed …

Here’s the trick to check what you want:

$ echo $PATH
# Some important ones:
#	$LIBRARY_PATH, $PATH, $JASPERINC, LD_LIBRARY_PATH
**Click to see the result:**

To display the result line by line:

$ sed 's/:/\n/g' <<< "$PATH"
**Click to see the result:**