Created
July 31, 2015 16:18
-
-
Save Maslor/4786b35ecced91b80475 to your computer and use it in GitHub Desktop.
Just a funny script to run on a windows terminal. It basically opens some terminal windows and infinitely prints the message in each of them.
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
mklink "C:\Users\Gabriel\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\ip.lnk" "interpol.bat" | |
set var1=You have been tracked by Interpol. Turn your terminal off and await the local authorities calmly. | |
set var2=You are being arrested for posession of illegal digital content. | |
set cont=500 | |
:loop | |
echo ALERT! | |
if %cont% equ 0 goto end | |
set /a cont=cont-1 | |
goto loop | |
:end | |
echo %var1% | |
timeout 2 | |
echo %var2% | |
timeout 30 | |
for /l %%a in (1 1 20) do start "" cmd /q /c"for /l %%b in (0) do echo YOU HAVE THE RIGHT TO BE SILENT. STAY WHERE YOU ARE. EVERYTHING YOU SAY CAN AND WILL BE USED AGAINST YOU IN THE COURT OF LAW" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment