RosettaCodeData/Task/Fork/Batch-File/fork-2.bat

14 lines
209 B
Batchfile
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
@echo off
setlocal enableextensions
if defined forked_%~n0 (
echo I'm the child
pause
exit
) else (
title Parent window
set forked_%~n0=1
start "Child window" %~f0
echo I'm the parent.
pause
)