Answers for "check env variable in linux"

1

if env variable exists bash

if [[ -z "${VAR}" ]]; then
  echo "hello"
fi
Posted by: Guest on November-25-2021
15

linux view environment variables

printenv
Posted by: Guest on May-27-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language