Tweets from pichat
| Two songs from the year I created my first web sites. http://t.co/8eHrOA9K + http://t.co/AuWb2etI #video #retro About 1 day ago from pichat (Mark Seuffert) |
Tweets from 600infos
| I HAVE NYANED FOR 888.4 SECONDS! http://t.co/JQYOZebv via @nyannyancat About 1 week, 5 days ago from 600infos (Wolf) |
Trace: » pichat.ini » Development-Area » Adminwolf » Chat Clients » DOS Function Template » List of entries of the path enviroment variable
You are here: Pichat Wiki (en) » Snippets » List of entries of the path enviroment variable
List of entries of the path enviroment variable
loeotpev.cmd
@echo off
REM loeotpev.cmd
REM Version 0.1 Mark Wolfgruber 2009/07/23
FOR /F "usebackq tokens=2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27* delims=;=" %%a IN (`set path ^| find /i "path="`) DO (
echo List of entries of the path enviroment variable:
if not "%%a" == "" echo 1. %%a
if not "%%b" == "" echo 2. %%b
if not "%%c" == "" echo 3. %%c
if not "%%d" == "" echo 4. %%d
if not "%%e" == "" echo 5. %%e
if not "%%f" == "" echo 6. %%f
if not "%%g" == "" echo 7. %%g
if not "%%h" == "" echo 8. %%h
if not "%%i" == "" echo 9. %%i
if not "%%j" == "" echo 10. %%j
if not "%%k" == "" echo 11. %%k
if not "%%l" == "" echo 12. %%l
if not "%%m" == "" echo 13. %%m
if not "%%n" == "" echo 14. %%n
if not "%%o" == "" echo 15. %%o
if not "%%p" == "" echo 16. %%p
if not "%%q" == "" echo 17. %%q
if not "%%r" == "" echo 18. %%r
if not "%%s" == "" echo 19. %%s
if not "%%t" == "" echo 20. %%t
if not "%%u" == "" echo 21. %%u
if not "%%v" == "" echo 22. %%v
if not "%%w" == "" echo 23. %%w
if not "%%x" == "" echo 24. %%x
if not "%%y" == "" echo 25. %%y
if not "%%z" == "" echo 26. %%z
)