Skip to content

Instantly share code, notes, and snippets.

@Techlogist
Last active October 3, 2021 12:37
Show Gist options
  • Save Techlogist/faad473ffd2fce5958b52f0bc8dea8b1 to your computer and use it in GitHub Desktop.
Save Techlogist/faad473ffd2fce5958b52f0bc8dea8b1 to your computer and use it in GitHub Desktop.
How to create a batch file?
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