Skip to content

Instantly share code, notes, and snippets.

@chenwaichung
Created May 10, 2019 07:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chenwaichung/7c41178cfbb472e3fdb779e9a50932a8 to your computer and use it in GitHub Desktop.
Save chenwaichung/7c41178cfbb472e3fdb779e9a50932a8 to your computer and use it in GitHub Desktop.
check env home is set
#!/bin/bash
if [ -z "$HOME" ]
then
echo "\$HOME is empty"
else
echo "\$HOME is NOT empty"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment