Skip to content

Instantly share code, notes, and snippets.

@kunst1080
Created April 24, 2017 12:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kunst1080/ddbbe99ad5684823c2e4a4cda8c0ccec to your computer and use it in GitHub Desktop.
Save kunst1080/ddbbe99ad5684823c2e4a4cda8c0ccec to your computer and use it in GitHub Desktop.
open explorer in Bash on Ubuntu on Windows (BoW)
#!/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