Last active
May 24, 2019 05:22
-
-
Save xdevmaycry/1449d5667278e0a08b14413c5ee7831c to your computer and use it in GitHub Desktop.
WSL aka Windows Subsystem for Linux
This file contains 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
## To make sure ~/.bashrc gets autoladed when launching WSL | |
if [[ -f ~/.bashrc ]] ; then | |
. ~/.bashrc | |
fi | |
## To make sure ~/.zshrc gets autoladed when launching WSL | |
if [[ -f ~/.zshrc ]] ; then | |
. ~/.zshrc | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment