-
-
Save andrelramos/aa43c818e6ece74c82f467f7fab809e2 to your computer and use it in GitHub Desktop.
Myenvs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function myenvs() { | |
if [[ $# -ne 1 ]]; then | |
export $(cat .env | xargs) | |
else | |
export $(cat $1 | xargs) | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment