浏览代码

remove unused bat script

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@41857 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 15 年之前
父节点
当前提交
51ebc8df82
共有 1 个文件被更改,包括 0 次插入30 次删除
  1. 0 30
      lib/init/grass-run.bat

+ 0 - 30
lib/init/grass-run.bat

@@ -1,30 +0,0 @@
-@echo off
-rem Batch file to launch GRASS commands
-
-rem Change console title to name of module
-title GRASS: %1
-
-rem Force command line startup mode
-set GRASS_UI_TERM=1
-
-rem Run command
-%*
-
-if not %errorlevel% == 0 goto error
-
-title GRASS: %1 Done.
-echo.
-echo %1 complete.
-pause
-
-:end
-exit %errorlevel%
-
-:error
-title GRASS: %1 Done. (error %errorlevel%)
-echo.
-echo -----
-echo ERROR: %1 exited abnormally.
-echo -----
-pause
-goto end