- Nov 8, 1999
- 2,266
- 4
- 81
Updated thread, everyone post your best batch files
They must all WORK under DOS 6.22, so have a blast, and be creative!!
here goes... a rant to start off.
=================================
@echo off
rem [batch rant]
:start
choice Are you pissed off?
if errorlevel == 2 goto wannabe
if errorlevel == 1 goto hell
goto bye
:hell
echo My neighbors decided that they needed to hire a construction crew to come over on
echo this ever-so-crappy monday morning to break up their driveway and load it into a
echo dump truck the size of Eric Cartman... trouble is, there's a noise ordinance in my
echo town that prohibits such activities before 8AM... sounds to me like it needs a little
echo more enforcing, eh? Now if you excuse me, I'm going back to bed.
goto bye
:wannabe
choice You're not? Do you want to be?
if errorlevel == 2 goto toobad
if errorlevel == 1 goto loop
goto bye
:toobad
echo Ya know what? I don't care. I'm miserable, so you should be too...
echo.
echo.
goto loop
:loop
echo This is the song that doesn't end, it just goes on and on my friend...
goto loop
:bye
cls
echo Thanks for calling!
rem . o (moron)
rem [/batch rant]
here goes... a rant to start off.
=================================
@echo off
rem [batch rant]
:start
choice Are you pissed off?
if errorlevel == 2 goto wannabe
if errorlevel == 1 goto hell
goto bye
:hell
echo My neighbors decided that they needed to hire a construction crew to come over on
echo this ever-so-crappy monday morning to break up their driveway and load it into a
echo dump truck the size of Eric Cartman... trouble is, there's a noise ordinance in my
echo town that prohibits such activities before 8AM... sounds to me like it needs a little
echo more enforcing, eh? Now if you excuse me, I'm going back to bed.
goto bye
:wannabe
choice You're not? Do you want to be?
if errorlevel == 2 goto toobad
if errorlevel == 1 goto loop
goto bye
:toobad
echo Ya know what? I don't care. I'm miserable, so you should be too...
echo.
echo.
goto loop
:loop
echo This is the song that doesn't end, it just goes on and on my friend...
goto loop
:bye
cls
echo Thanks for calling!
rem . o (moron)
rem [/batch rant]
