Advertisement
Guest User

Untitled

a guest
Jan 28th, 2010
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. @echo off
  2. set t=! "" # $ %% ^& ' ^( ^) * + - , . / 0 1 2 3 4 5 6 7^
  3. 8 9 : ; ^< = ^> ? @ A B C D E F G H I J K L M N O P Q R S^
  4. T U V W X Y Z [ \ ] ^^ _ ` a b c d e f g h i j k l m n o p^
  5. q r s t u v w x y z { ^| } ~
  6. for /f "tokens=1-30,* delims= " %%! in ("%t%") do (
  7. rem look at the abuse %%? takes below for an extra token
  8. for /f "tokens=1-30,* delims= " %%? in ("%%?") do (
  9. rem abusing %%] now
  10. for /f "tokens=1-30,* delims= " %%] in ("%%]") do (
  11. rem note to abuse %%{
  12. for /f "tokens=1-4 delims= " %%{ in ("%%{") do (
  13. echo %%! %%" %%# %%$ %%~%% %%& %%' %%( %%) %%*
  14. echo %%+ %%, %%- %%. %%/ %%0 %%1 %%2 %%3 %%4
  15. echo %%5 %%6 %%7 %%8 %%9 %%: %%; %%^< %%= %%^>
  16. echo %%? %%@ %%A %%B %%C %%D %%E %%F %%G %%H
  17. echo %%I %%J %%K %%L %%M %%N %%O %%P %%Q %%R
  18. echo %%S %%T %%U %%V %%W %%X %%Y %%Z %%[ %%\
  19. echo %%] %%^^ %%_ %%` %%a %%b %%c %%d %%e %%f
  20. echo %%g %%h %%i %%j %%k %%l %%m %%n %%o %%p
  21. echo %%q %%r %%s %%t %%u %%v %%w %%x %%y %%z
  22. echo %%{ %%^| %%} %%~~
  23. )
  24. )
  25. )
  26. )
  27. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement