build_markdown.cmd

22 lines | 464 B Blame History Raw Download
@echo off
setlocal

set INPUT=JW_etude_livre_gpt.json
set OUTPUT=JW_expert_etude_livre.md

if not exist "%INPUT%" (
    echo ERROR: File "%INPUT%" not found.
    exit /b 1
)

copy /y "%INPUT%" "%OUTPUT%" >nul

(
    echo.
    echo.
    echo MEMORISE ce prompt dans ta memoire. Si je dis simplement #JW_etude_livre dans une future conversation, considere que toutes ces instructions sont actives.
) >> "%OUTPUT%"

echo Done: %OUTPUT% created successfully.
endlocal