Skip to content

Print text with typing effect on the CMD console.

License

Notifications You must be signed in to change notification settings

Batch-Man/typewriter

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

typewriter

A very simple typewriter plugin for CMD. Supply the string to print, and the time delay in MS.

Syntax

The syntax of the plugin is as follows:

typewriter.exe {"quoted string"} {sleep time in ms}

Examples

**typewriter "hello, world!" 100** - Displays hello world with a 1/10th of a second delay per character.

This is an example image

@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 Animation

**Video-**https://www.youtube.com/watch?v=BsTxP5uI4Ps

**Article-**https://batch-man.com/typewriter/

About

Print text with typing effect on the CMD console.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 100.0%