Last active
September 27, 2021 20:07
-
-
Save 2XXE-SRA/795b4129063d21f6aabf632e0b21a26e to your computer and use it in GitHub Desktop.
Batch script to mimic a minimal cmd window
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 | |
setlocal enabledelayedexpansion | |
set "true=1" | |
:loop | |
if defined true ( | |
set /p c="%cd%> " | |
start !c! | |
set c= | |
goto :loop | |
) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment