Skip to content

Instantly share code, notes, and snippets.

@Peters8090
Created July 30, 2019 22:56
Show Gist options
  • Save Peters8090/8015f453173c2c50ccdb2039f476416e to your computer and use it in GitHub Desktop.
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.
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