Little Tricks Collection
The small tricks we can do
1.clicking on the .bat file, we can make random numbers on a cmd infinitely. it just running in a loop and it does not store any number, but shows. We can use any color to use the font color.
@echo off
color 0c
:top
echo %random% %random% %random% %random% %random% %random% %random%
goto top
2.Change to name of the command promt
title Shaggy
3.To change the cmd font color and background color. go to start and open the file location of the cmd. Then right clicking on that, an interface is opened and we can change the color of the command prompt and the font colors.
We can change the font color of the cmd by typing "color attr" and hitting enter. Then some details are going to appear and then we can choose the color and type the value of the color we need
The tricks were found from Atomic Boy videos
1.clicking on the .bat file, we can make random numbers on a cmd infinitely. it just running in a loop and it does not store any number, but shows. We can use any color to use the font color.
@echo off
color 0c
:top
echo %random% %random% %random% %random% %random% %random% %random%
goto top
2.Change to name of the command promt
title Shaggy
The title of the command prompt is "Shaggy" |
3.To change the cmd font color and background color. go to start and open the file location of the cmd. Then right clicking on that, an interface is opened and we can change the color of the command prompt and the font colors.
The popped up interface to change the features |
Details of the colors |
Changing the font color of the cmd |
Changing to another color |
The tricks were found from Atomic Boy videos
Comments
Post a Comment