-
-
Save kunst1080/ddbbe99ad5684823c2e4a4cda8c0ccec to your computer and use it in GitHub Desktop.
open explorer in Bash on Ubuntu on Windows (BoW)
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
#!/bin/bash | |
if [ $# -eq 0 ]; then | |
DIR=. | |
else | |
DIR=$* | |
fi | |
explorer.exe $DIR |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment