
| Current Path : /home/ift/51_iftlib/scripts/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //home/ift/51_iftlib/scripts/index.htm |
<p><u>Echo.exe<br> </u>Echo echoes characters from the command line to the standard output. Unlike the built-in version of echo this version allows you to specify printf escape sequences (such as \n for a newline) and octal representations of characters.</p> <blockquote> <p><br> \b BACKSPACE<br> \c Print line without NEWLINE<br> \f FORMFEED<br> \n NEWLINE<br> \r RETURN<br> \t TAB<br> \v vertical TAB<br> \\ backslash<br> \x the 8-bit character whose ASCII code is the 1-, 2-, 3- or 4-digit octal number x. The first digit must be zero.</p> <p>Supports a switch, -n, that prevents echo.exe from echoing a carriage return/linefeed on it's output<br> <br> </p> </blockquote> <p>Example usage:</p> <p><font face="Courier">C:\echo.exe %TIME%\n%DATE%<br> 16:25:13.03<br> Fri 02/06/2004</font></p> <p><br> c:\echo.exe -n "Hey " & c:\echo.exe you!<br> Hey you!</p> <hr> <p><u>DF.exe<br> </u>Displays free disk space.</p> <p>usage: df [-c -b -f|-F -r|-R -w|-W [drive ...]<br> <br> -f : include floppy disks<br> -F : do only floppy disks (local only)<br> -c : include CD-ROMs<br> -r : exclude remote disks<br> -R : do only remote disks<br> -b : (bare display) no header or footer or totals<br> -w : display output in a Windows Messagebox<br> <br> Copyright 1996, 1998, 2000 by Paul R. Sadowski <aa089@bfn.org>.<br> All Rights Reserved. Licensed for noncommercial use.</p> <p>Example: ([\\$]] indicates a remote disk if a share name can't be determined)<br> df<br> <font face="Courier">drive kbytes used avail capacity<br> C:\ 20974428 16986443 3987984 81% [Volume has no label] (ntfs)<br> D:\ 18876981 5551128 13325852 29% v1d (ntfs)<br> E:\ 18876981 1255931 17621049 7% v12 (ntfs)<br> F:\ 21262315 7373111 13889204 35% vdf (ntfs)<br> H:\ 21056712 14853574 6203138 71% Dell Server (ntfs) \\bliss\c$</font><br> <font face="Courier">------------------------------------------------------<br> 101047417 46020187 55027227 46%</font></p> <hr> <p>Max.exe, Min.exe, Norm.exe<br> These programs change the console window's current state (maximize, minimize, normal). They have no effect in full-screen mode.<br> <br> Example:<br> <font face="Courier">@echo off<br> do something<br> min<br> do something else<br> max<br> do another thing<br> norm</font></p> <hr> <p><u>Sleep.exe<br> </u>Waits for specified number of seconds to pass.<br> sleep: sleep-time-in-seconds</p> <p>Example:<br> <font face="Courier">rem sleep for 5 minutes<br> sleep 300</font></p> <hr> <p><u>Shortname.exe<br> </u>Displays the short (8.3 format) name of a path or file. (Works with local or UNC paths.)<br> <br> Example:<br> <font face="Courier">C:\shortname \\bliss\c$\46664Concert.asf<br> \\bliss\c$\46664C~1.ASF</font></p> <hr> <p><u>Fullname.exe<br> </u>Displays the long name of a file or path. (Does NOT work with UNC paths.)<br> <br> Example:<br> <font face="Courier">C:\fullname c:\PROGRA~1\Adobe\ACROBA~1.0\Acrobat\Ace.dll<br> c:\Program Files\Adobe\Acrobat 6.0\Acrobat\Ace.dll</font></p> <hr> <p><u>Uptime.exe<br> </u>Displays the time since the machine's boot.<br> <br> Example:<br> <font face="Courier">C:\uptime<br> 4:50:26 PM up 3 days, 22:18</font></p> <hr> <p><u>Which.exe<br> </u>Displays which copy of a file would be executed.<br> Which uses the PATH environment variable to determine which file would be executed. Which also uses the PATHEXT variable if you do not specify an extension to the file used in the argument.<br> <br> Example:<br> C:\which which<br> .\which.exe<br> <br> C:\which mywanip<br> c:\bin\mywanip.vbs</p> <hr> <p><u>Msgbox.exe<br> </u>Displays a simple informational GUI message box with the text you want to display.<br> <br> Example:<br> <font face="Courier">C:\Msgbox Finished run at %DATE% %TIME%<br> <br> @echo off<br> if NOT EXISTS c:\somedir\somefile.dat<br> C:\Msgbox File c:\somedir\somefile.dat does not exist! & goto :EOF<br> <br> <img border="0" src="index.1.jpg"></font></p> <hr>