Files
TeslaRel410/sda4/BIN/PHILS/DIARY.BAT
T
CydandClaude Fable 5 db7745fcd0 sda4: commit the Glaze developer hard-drive dump
Un-ignored: the dev drive is the ground truth the restoration and
emulator work constantly reference (DPL3/LIBDPL + VRENDER i860 renderer
source, BT/RP live+dev game trees, VGL_LABS pod boot, scene/audio
content). Kept in-repo for the pod-owner community.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-04 19:41:15 -05:00

26 lines
515 B
Batchfile

@ECHO OFF
if "%1"=="help" goto help
if "%1"=="/h" goto help
if "%1"=="" goto default
if "%2"=="" goto just1
fgrep /i %2 s:\diary\%1.dry
goto end
:just1
type s:\diary\%1.dry | more
goto end
:help
ECHO diary [name] [[search_string]]
ECHO diary - list contents of all diaries
ECHO diary name - list content of specified diary
ECHO diary name string - list all occurences of 'string' in named diary
goto end
:default
for %%i in (s:\diary\*.dry) do more %%i
:end