Created
October 23, 2017 17:00
-
-
Save prail/24acc95908e581722c0e9df5795180f6 to your computer and use it in GitHub Desktop.
Bash and Batch polyglot. (Really nice for build scripts that need to support multiple platforms.)
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
echo off | |
echo ; set +v # > NUL | |
echo ; function GOTO { true; } # > NUL | |
GOTO WIN | |
# bash part, replace it to suit your needs | |
exit 0 | |
:WIN | |
REM win part, replace it to suit your needs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks