Skip to main content

Matrix Effect on your CMD (Command Prompt)




In this you will make a batch file in notepad which will act as matrix effect that you might have seen in movies.Matrix effect is basically number flashes in green color.


 1. Open Noteapad and copy below code into it.

@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start

2. Now save this file as Matrix.bat (name can be anything but .bat is must)
3. Open your saved file and you will have matrix effect on your screen via CMD.

Wait for my next post... Have a nice day...



Comments