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
| #!/bin/bash | |
| # shebang added only to appease shellcheck | |
| # Cross-platform for bash. | |
| # Worry less about when writting a script that must run on Windows, Linux, and Mac. | |
| # Meant to be used with "source" command in scripts. | |
| # Compatiblity with MacOS's old bash | |
| if [ -n "$ZSH_VERSION" ]; then | |
| # After a rerun as Zsh, simulate bash |