Created
July 30, 2019 22:56
-
-
Save Peters8090/8015f453173c2c50ccdb2039f476416e to your computer and use it in GitHub Desktop.
Batch script, which can be used to make your friends think you're a hacker. It actually displays all files in an infinite loop.
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 & cls | |
set NUM=0 1 2 3 4 5 6 7 8 9 A B C D E F | |
for %%y in (%NUM%) do ( | |
for %%x in (%NUM%) do ( | |
color a & for /l %%A in (1,1,200) do (dir /s) | |
timeout 0 >nul | |
) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment