Skip to content

Instantly share code, notes, and snippets.

@taiju
Last active March 8, 2018 11:44
Show Gist options
  • Save taiju/5ebf23e3710da46e19f9dc702e82079e to your computer and use it in GitHub Desktop.
Save taiju/5ebf23e3710da46e19f9dc702e82079e to your computer and use it in GitHub Desktop.
WSL 上でフォルダを開いたり、ファイルを開いたりするコマンドのラッパ
#!/bin/sh
if [ -f "$@" ]; then
cmd.exe /c start "$@"
else
cd "$@" && cmd.exe /c start . && cd "$OLDPWD"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment