Last active
October 3, 2021 12:37
-
-
Save Techlogist/faad473ffd2fce5958b52f0bc8dea8b1 to your computer and use it in GitHub Desktop.
How to create a batch file?
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
REM License: GNU General Public License v2.0 | |
REM Author: Miguel | |
REM Website: www.techlogist.net | |
REM Post: https://techlogist.net/batch/how-to-create-a-batch-file | |
REM Description: This BAT Hello World as an example. | |
REM OS/Language/Region: Windows/EN-US | |
@echo off | |
title Hello World Bat | |
echo Hello World! | |
pause | |
:EOF | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment