Friday, June 21, 2019

Matrix In Command Prompt

matrix
Matrix

Who doesn't loves the visual effect of the falling binary code known as ” Rain ” in The Matrix? In this article, we are gonna discuss how you can create The Matrix rain effect in your Command Prompt.


Steps to Create Matrix Rain Effect In Command Prompt

1. Open your notepad application

   (Press Windows+R key, Run dialog box appear after that type there notepad and hit Enter Key)


run

2. Type the following code in your notepad

@Echo off

:main

color 2

echo 111 0 0 0 0 0 1 1 1 1 1 2 2 2 3  1 1 1 1 0 0 0 0  1 1 2 3 4 5 5 1 1 1 1 1 1 0 9 0 0 0  3  1 1 1 11

ping localhost -n >null

echo  00 0 000 9 00 9 87 6 8 9 0 0  5 5 4 3 3 2 2 1 11 1 1  0 0 9 8 7 7  3 2  1 1 1 1 1  0 8 7 65 4 3 2

 ping localhost -n >null

echo 1 0 0 00 9 8 88 0 000  4 44 3 2 1 1 1 11 1  0 9 8 7 6 5 43 2 1 11 00 9 8 00 0  33  2 1 1 1 1 1 2 

ping localhost -n >null

echo 1 1 1 1 10 0 0 00 8 9 0 9 0 7 6 5 4 3 1 1 1 1 3 4 6 7 8 0 0 0 0 0 4  3  1 1 1  0 9 8 7 5 4 3 2  12

 ping localhost -n >null

goto main


notepad

Now let's understand the code

@Echo off - This line must be needed to create any batch fileBy default, echo is turned on for any batch file. We can turn off the echo by including this following line

: main  - main is the executable part. After the main, you can write a batch code whatever you want.

color 2 - color 2 stands for green color. You can change text-color by changing numbers such as color 3, color 4, etc. 

echo - echo is used to print text in CMD (Command Prompt). After the echo, you can write any text or number. Such as echo 111 0 9 8 7 7 1 2 33

ping localhost -n > null - This line of code used to provide a smooth scrolling effect to the text in CMD.

 goto main - This line used to create a loop like a situation where it executes codes under the main block again and again.


3. Save the file with a .bat extension. Such as matrix.bat 

(For saving file press Ctrl+S or File->Save As...)

save

4. Double click on the file to execute it.


execute


Execution effect


No comments:

Post a Comment