A very simple typewriter plugin for CMD. Supply the string to print, and the time delay in MS.
The syntax of the plugin is as follows:
typewriter.exe {"quoted string"} {sleep time in ms}
**typewriter "hello, world!" 100**
- Displays hello world with a 1/10th of a second delay per character.
@echo off
Title TypeWriter Demo - www.batch-man.com
cls
REM Including Typewriter Location into the default PATH
Pushd "..\typewriter\bin"
Set "Path=%Path%;%cd%"
Popd
color 09
echo This is a demo of the typewriter plugin.
echo.&pause&Echo.
typewriter "This should display relatively quickly" 50
echo.&pause&Echo.
typewriter "This should display about half as fast" 100
echo.&pause&Echo.
typewriter "A little slower..." 200
echo.&pause&Echo.
typewriter "Half a second" 500
echo.&pause&Echo.
typewriter "One second delay" 1000
echo.&pause&Echo.
echo Demonstration finished.
echo.&pause&Echo.
exit
This will demonstrate diffrent ways to use typewriter plugin
**Video-**https://www.youtube.com/watch?v=BsTxP5uI4Ps
**Article-**https://batch-man.com/typewriter/