Advertisement
owlman

Type a Word | Batch File

Dec 2nd, 2015
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. @echo off
  2. :loop
  3. title Word Counter
  4. cls
  5. set /p word=Type A Word:
  6. cls
  7. set /p num=How Many Time Would You Like To See It?
  8. FOR /L %%A IN (1,1,%num%) DO echo %word%
  9. pause>nul
  10. goto loop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement