Make Simple Matrix Through Notepad in Command Prompt

We can make green numbers continue to scroll down like shown in the science fiction movie-The Matrix
Here is a method to make a matrix using Notepad.

Step 1: Open Notepad

Step 2: Copy the below code and paste it into notepad.

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

Step 3: Save as "Matrix.bat".You can save by any name but you have to put extension(file type) at last ".bat"
 

Done!
Open that saved file. It will look like...
 

Note :
  • You can also create this in different colour by replace '02' in the code by '01','03','04','05','06','07','08','09','10'.