view installer-files/octave.bat @ 3811:01182b377bb1

Don't display empty cmd window when starting GUI in Windows (partial fix for bug #41074). * installer-files/octave.bat: Add /B switch to start command for running octave-gui.exe. The cmd window from running octave.bat may still be shown briefly on some platforms.
author Rik <rik@octave.org>
date Thu, 26 Feb 2015 09:17:38 -0800
parents 70480095b6ed
children fbc5d86517c9
line wrap: on
line source

@echo off
Rem   Find Octave's install directory through cmd.exe variables.
Rem   This batch file should reside in Octaves installation subdir!
Rem
Rem   This trick finds the location where the batch file resides.
Rem   Note: the result ends with a backslash
set OCT_HOME=%~dp0

Rem   Set up PATH. Make sure the octave bin dir
Rem   comes first.

set PATH=%OCT_HOME%bin;%PATH%

Rem   Set up any environment vars we may need

set TERM=cygwin

Rem   Check for args to see if we are told to start GUI
Rem   with the --force-gui option or not (--no-gui)
Rem   Otherwise assume starting as command line
set GUI_MODE=1
:checkargs
if -%1-==-- goto noargs
  if NOT %1==--force-gui goto notguiarg
    set GUI_MODE=1
:notguiarg
  if NOT %1==--no-gui goto notnoguiarg
    set GUI_MODE=0
:notnoguiarg
  shift
  goto  checkargs
:noargs

Rem   Start Octave (this detaches and immediately returns):
if %GUI_MODE%==1 (
start /B octave-gui.exe %*
) else (
start octave-cli.exe %*
)

Rem   Close the batch file's cmd.exe window
exit