home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Netware Super Library
/
Netware Super Library.iso
/
file_mgt
/
ffg
/
util_bat
/
since.bat
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
DOS Batch File
|
1994-10-23
|
260 b
|
14 lines
@echo off
cls
if %1.==. goto USAGE
echo.
echo Here is a listing of files created/modified since %1.
ffg /p *:* /d%1-
goto END
:USAGE
echo.
echo USAGE:
echo %0 MM/DD/YY where MM/DD/YY is a valid FFG date
echo.
:END