Introduction
Today, we will show you how to create Matrix Effect in Notepad. This is amazing notepad trick which will display matrix effect like you might have seen in movies. Yes, Matrix: numbers flashes in green colour. Basically, we will be creating a small batch file in notepad.
Matrix Definition
In analytical chemistry, the enhancement or suppression of minor element spectral lines from metallic oxides during emission spectroscopy by the matrix element (such as graphite) used to hold the sample. The combined effect exerted by the various constituents of the matrix on the measurements of the analysis.
Follow these Steps:
- 1. Go to Notepad and copy this code.
_________________________________________________________________
@echo off
@echo off
color 02
:start
echo %random% %random% %random% %random% %random%
%random% %random% %random% %random% %random%
%random% %random% %random% %random% %random%
goto start
_________________________________________________________________
_________________________________________________________________
- 2. Save this file as matrix.bat
- 3. Now open this file and see matrix effect on your screen.
- 4. Enjoy the trick
Batch File
Batch file is the name given to a type of script file, a text file containing a series of commands to be executed by the command interpreter, in DOS, OS/2, and also Microsoft Windows.
A batch file may contain any command the interpreter accepts interactively at the command prompt. A batch file may also have constructs ( IF, GOTO, Labels, CALL, etc.) that enable conditional branching and looping within the batch file.
Similar to job control language and other systems on mainframe and minicomputer systems, batch files were added to ease the work required for certain regular tasks by allowing the user to set up a script to automate them. When a batch file is run, the shell program (usually COMMAND.COM or cmd.exe) reads the file and executes its commands, normally line-by-line. Unix-like operating systems (such as Linux) have a similar, but more flexible, type of file called a shell script.
No comments:
Post a Comment