home *** CD-ROM | disk | FTP | other *** search
- WATCHIO.COM - This is a memory resident debugging utility that
- allows a user at any time to see the names of all files
- in use, and the name of the program currently running.
-
- The screen show reads,write,lseeks, read bytes write bytes
- DS:DX of open, DS:DX of last i/o, DOS file handle,
- process # which opened file, last file opened, last
- error file.
-
- WATCHIO /H? [where ? is the hot-key A-Z] install with alt-key
- or
- WATCHIO /U to uninstall
-
-
-
-
- BOX.COM - This is a short program that will take the command line,
- center it on a line, and draw a single line box around it.
- I find it useful for replacing ECHO in batch files.
-
-
- Coming attractions from K & R Software/Quantum Publishing
-
- 'WALK' by K & R Software allows a user to find files by:
- - file size (or size range)
- - date (or date range)
- - time (or time range)
- - file attributes (any combination e.g. hidden, system...)
- - (or any combination of above)
-
- - Walk allows entry of a command string in which to use the files found
- e.g. Walk *.bak pc=@ "del @" >scratcher.bat
-
- will walk the hard disk, finding all files with a .BAK extension,
- the output will be piped into a batch file (scratcher.bat),
- and the "@" will be replaced by each file found.
- the results will look similar to this:
-
- del doc.bak
- del raktest.bak
- del letter.bak
-
- Syntax : WALK FL=x {optional parameters} {"optional command line"}
-
- FL= Filename to include in walk (wildcards permitted)
- NT= filename NoT to include in walk (5 max; wildcards permitted)
- PT= PaThname to start walking from
- DR= DRives to include in walk
- IN= EX= INclude/EXclude file attributes (default EX=HDV)
- Attributes: 1=undefined bit 1, 2=undefined bit 2,
- R=Read-only, H=Hidden, S=System, D=Dir, V=Volume, A=Archive
- SS= ES= Start/End Size of files (in K) to include
- SD= ED= Start/End Date of files to include
- ST= ET= Start/End Time of files to include
- OP= OPtions: 1=walk 1 level only, S=list file statistics,
- D=DIR style listing, L=list suppression(to get Stats only),
- Q=query command line execution(Y/N), V=verbose file detail(implies D)
- E=execution suppression(for batch file creation)
- PC= Path Character used for substitution in command line execution
- string to be replaced with qualifying path/file name
- "command line" command line to be executed for each qualifying path/file name
-
-
-