code
stringlengths
3
1.03M
repo_name
stringlengths
5
84
path
stringlengths
4
233
language
stringclasses
1 value
license
stringclasses
15 values
size
int32
3
1.03M
net start carbonator
lhoworko/carbonator
Carbonator/start-service.cmd
bat
mit
20
@echo off pushd %~dp0 "%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_OXCMSG.S06_ReloadCachedInformation.MSOXCMSG_S06_TC01_RopReloadCachedInformation /testcontainer:..\..\MS-OXCMSG\TestSuite\bin\Debug\MS-OXCMSG_TestSuite.dll /runconfig:..\..\MS-OXCMSG\MS-OXCMSG.testsettings /unique pause
XinwLi/Interop-TestSuites-1
ExchangeMAPI/Source/Scripts/MS-OXCMSG/RunMSOXCMSG_S06_TC01_RopReloadCachedInformation.cmd
bat
mit
312
@echo off setlocal CD /d "%~dp0" ::Test If script has Admin Priviledges/is elevated REG QUERY "HKU\S-1-5-19" 2> NUL IF %ERRORLEVEL% NEQ 0 ( ECHO Please run this script as an administrator pause EXIT /B 1 ) cls echo Setup Options echo ============= echo. echo 1. Check dependencies. echo Note: requires internet connection. echo. echo 2. Exit. echo. choice /c:12 /M "Choose an option: " if errorlevel 2 goto exit if errorlevel 1 goto downloaddc :downloaddc REM Here executes the PS1 to download the DC.EXE. echo Downloading Dependency Checker IF EXIST %WINDIR%\SysWow64 ( set powerShellDir=%WINDIR%\SysWow64\windowspowershell\v1.0 ) ELSE ( set powerShellDir=%WINDIR%\system32\windowspowershell\v1.0 ) call %powerShellDir%\powershell.exe -Command Set-ExecutionPolicy unrestricted call %powerShellDir%\powershell.exe -Command "&'.\Setup\Scripts\RunDC.ps1'" goto pause :pause pause :exit
sayar/fullstack-training-kit
HOLs/HOL-GoingLiveWindowsAzureWebSites/Source/Setup.cmd
bat
mit
909
raco make lang/python.rkt raco make lang/reader.rkt
pedropramos/PyonR
make.bat
bat
mit
51
cmd_sound/usb/6fire/built-in.o := rm -f sound/usb/6fire/built-in.o; /home/friedrich420/kernel/Toolchain/arm-eabi-4.7/bin/arm-eabi-ar rcsD sound/usb/6fire/built-in.o
friedrich420/Note-3-AEL-Kernel
sound/usb/6fire/.built-in.o.cmd
bat
gpl-2.0
166
@echo off REM ------------------------------------------------------------------------ REM Licensed to the Apache Software Foundation (ASF) under one or more REM contributor license agreements. See the NOTICE file distributed with REM this work for additional information regarding copyright ownership. REM The ASF licenses this file to You under the Apache License, Version 2.0 REM (the "License"); you may not use this file except in compliance with REM the License. You may obtain a copy of the License at REM REM http://www.apache.org/licenses/LICENSE-2.0 REM REM Unless required by applicable law or agreed to in writing, software REM distributed under the License is distributed on an "AS IS" BASIS, REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. REM See the License for the specific language governing permissions and REM limitations under the License. REM ------------------------------------------------------------------------ if exist "%HOME%\activemqrc_pre.bat" call "%HOME%\activemqrc_pre.bat" if "%OS%"=="Windows_NT" @setlocal rem %~dp0 is expanded pathname of the current script under NT set DEFAULT_ACTIVEMQ_HOME=%~dp0.. if "%ACTIVEMQ_HOME%"=="" set ACTIVEMQ_HOME=%DEFAULT_ACTIVEMQ_HOME% set DEFAULT_ACTIVEMQ_HOME= :doneStart rem find ACTIVEMQ_HOME if it does not exist due to either an invalid value passed rem by the user or the %0 problem on Windows 9x if exist "%ACTIVEMQ_HOME%\README.txt" goto checkJava rem check for activemq in Program Files on system drive if not exist "%SystemDrive%\Program Files\activemq" goto checkSystemDrive set ACTIVEMQ_HOME=%SystemDrive%\Program Files\activemq goto checkJava :checkSystemDrive rem check for activemq in root directory of system drive if not exist %SystemDrive%\activemq\README.txt goto checkCDrive set ACTIVEMQ_HOME=%SystemDrive%\activemq goto checkJava :checkCDrive rem check for activemq in C:\activemq for Win9X users if not exist C:\activemq\README.txt goto noAntHome set ACTIVEMQ_HOME=C:\activemq goto checkJava :noAntHome echo ACTIVEMQ_HOME is set incorrectly or activemq could not be located. Please set ACTIVEMQ_HOME. goto end :checkJava set _JAVACMD=%JAVACMD% if "%JAVA_HOME%" == "" goto noJavaHome if not exist "%JAVA_HOME%\bin\java.exe" goto noJavaHome if "%_JAVACMD%" == "" set _JAVACMD=%JAVA_HOME%\bin\java.exe goto runAnt :noJavaHome if "%_JAVACMD%" == "" set _JAVACMD=java.exe echo. echo Warning: JAVA_HOME environment variable is not set. echo. :runAnt if "%ACTIVEMQ_BASE%" == "" set ACTIVEMQ_BASE=%ACTIVEMQ_HOME% if "%ACTIVEMQ_CONF%" == "" set ACTIVEMQ_CONF=%ACTIVEMQ_HOME%\conf if "%ACTIVEMQ_DATA%" == "" set ACTIVEMQ_DATA=%ACTIVEMQ_HOME%\data if "%ACTIVEMQ_TMP%" == "" set ACTIVEMQ_TMP=%ACTIVEMQ_DATA%\tmp if "%ACTIVEMQ_OPTS%" == "" set ACTIVEMQ_OPTS=-Xms1G -Xmx1G -Djava.util.logging.config.file=logging.properties -Djava.security.auth.login.config=%ACTIVEMQ_CONF%\login.config if "%ACTIVEMQ_SUNJMX_START%" == "" set ACTIVEMQ_SUNJMX_START=-Dcom.sun.management.jmxremote REM set ACTIVEMQ_SUNJMX_START=-Dcom.sun.management.jmxremote.port=1099 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false REM Uncomment to enable YourKit profiling REM SET ACTIVEMQ_DEBUG_OPTS="-agentlib:yjpagent" REM Uncomment to enable remote debugging REM SET ACTIVEMQ_DEBUG_OPTS=-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005 REM Setup ActiveMQ Classpath. REM Add instance conf dir before AMQ install conf dir to pick up instance-specific classpath entries first set ACTIVEMQ_CLASSPATH=%ACTIVEMQ_CONF%;%ACTIVEMQ_BASE%/conf;%ACTIVEMQ_HOME%/conf;%ACTIVEMQ_CLASSPATH% "%_JAVACMD%" %ACTIVEMQ_SUNJMX_START% %ACTIVEMQ_DEBUG_OPTS% %ACTIVEMQ_OPTS% %ACTIVEMQ_SSL_OPTS% -Dactivemq.classpath="%ACTIVEMQ_CLASSPATH%" -Dactivemq.home="%ACTIVEMQ_HOME%" -Dactivemq.base="%ACTIVEMQ_BASE%" -Dactivemq.conf="%ACTIVEMQ_CONF%" -Dactivemq.data="%ACTIVEMQ_DATA%" -Djava.io.tmpdir="%ACTIVEMQ_TMP%" -jar "%ACTIVEMQ_HOME%/bin/activemq.jar" %* goto end :end set _JAVACMD= if "%OS%"=="Windows_NT" @endlocal :mainEnd if exist "%HOME%\activemqrc_post.bat" call "%HOME%\activemqrc_post.bat"
hyokun31/wisekb-management-platform
wisekb-uima-ducc/apache-uima/apache-activemq/bin/activemq.bat
bat
apache-2.0
4,174
echo off cls echo ********************************************************* echo make sure you are running this entire shell in admin mode echo ********************************************************* pause echo on cd modules cd mDAL call install.cmd call link.cmd cd.. cd.. cd server call linkDALs.cmd npm install cd.. pause
javuio/MySQLNodeBootstrapAngular
install.cmd
bat
mit
326
make clean make MCU=atmega168 copy SelfTest.hex SelfTest168.hex pause
rchicoli/asuro-lib
examples/SelfTest/make168-all.bat
bat
gpl-2.0
71
@rem Copyright 2017 gRPC authors. @rem @rem Licensed under the Apache License, Version 2.0 (the "License"); @rem you may not use this file except in compliance with the License. @rem You may obtain a copy of the License at @rem @rem http://www.apache.org/licenses/LICENSE-2.0 @rem @rem Unless required by applicable law or agreed to in writing, software @rem distributed under the License is distributed on an "AS IS" BASIS, @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @rem See the License for the specific language governing permissions and @rem limitations under the License. @rem make sure msys binaries are preferred over cygwin binaries @rem set path to python 2.7 set PATH=C:\tools\msys64\usr\bin;C:\Python27;%PATH% @rem enter repo root cd /d %~dp0\..\..\.. git submodule update --init python tools/run_tests/task_runner.py -f artifact windows || goto :error goto :EOF :error exit /b %errorlevel%
yang-g/grpc
tools/internal_ci/windows/grpc_build_artifacts.bat
bat
apache-2.0
946
IF DEFINED APPVEYOR ( REM mkdir "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Microsoft.Common.targets\ImportBefore" REM copy packages\MSBuild.SonarQube.Runner.Tool.1.0.0\tools\Targets\SonarQube.Integration.ImportBefore.targets "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Microsoft.Common.targets\ImportBefore\" echo Sonarqube analysis for: %APPVEYOR_REPO_COMMIT% IF DEFINED APPVEYOR_PULL_REQUEST_NUMBER ( echo Pull Request %APPVEYOR_PULL_REQUEST_NUMBER% cannot be analysed using SonarQube. echo It is not possible to login using secure tokens in appveyor. @echo off REM SonarQube.Scanner.MSBuild.exe begin /k:"PlaygroundDotNetCore" /n:"PlaygroundDotNetCore" /d:sonar.cs.opencover.reportsPaths="coverage-dotnet.xml" /d:"sonar.cs.vstest.reportsPaths=%APPVEYOR_BUILD_FOLDER%\TestResults.trx" /d:"sonar.organization=coenm-github" /d:"sonar.host.url=https://sonarcloud.io" /d:"sonar.login=%sonar_login%" /v:%appveyor_build_version% /d:"sonar.branch=%GitVersion_BranchName%" /d:"sonar.cpd.cross_project=true" /d:"sonar.analysis.mode=preview" /d:"sonar.github.oauth=%github_oauth_token%" /d:"sonar.github.pullRequest=%APPVEYOR_PULL_REQUEST_NUMBER%" /d:"sonar.links.scm_dev=https://github.com/coenm/PlaygroundCoreDotNet" /d:sonar.issuesReport.console.enable=true /d:"sonar.github.repository=coenm/PlaygroundCoreDotNet" /d:sonar.verbose=true ) ELSE ( echo Analysing commit %APPVEYOR_REPO_COMMIT% @echo off set SONARQUBE_ENABLED=true SonarQube.Scanner.MSBuild.exe begin /k:"PlaygroundDotNetCore" /n:"PlaygroundDotNetCore" /d:sonar.cs.opencover.reportsPaths="coverage-dotnet.xml" /d:"sonar.cs.vstest.reportsPaths=%APPVEYOR_BUILD_FOLDER%\TestResults.trx" /d:"sonar.organization=coenm-github" /d:"sonar.host.url=https://sonarcloud.io" /d:"sonar.login=%sonar_login%" /v:%appveyor_build_version% /d:"sonar.branch=%GitVersion_BranchName%" /d:"sonar.cpd.cross_project=true" ) ) ELSE ( echo Sonarqube analysis only supported at appveyor. )
coenm/PlaygroundCoreDotNet
.scripts/InitializeSonarqubeAnalysis.bat
bat
mit
2,012
@echo off :: %License% SetLocal DisableDelayedExpansion set Result=1 set Arg1=%1 SetLocal EnableDelayedExpansion if not .!Arg1! == . EndLocal & call :Usage & goto Exit EndLocal :DoWork taskkill /im adb.exe /f 2>nul set Result=%ErrorLevel% :: ErrorLevel 128 means the process was not found, which in our case is a success. :: However, for other errors, we need to display the error message, :: so call taskkill again without redirecting the error. if not %Result% equ 0 ( if not %Result% equ 128 ( taskkill /im adb.exe /f ) ) goto ExitResult :Usage echo. echo Kills all instances of adb.exe. echo. echo.%~n0 ^<No Parameters^> exit /b :ExitResult if %Result% equ 128 ( set Result=0 echo The process "adb.exe" was not running. ) :Exit call "%~dp0PauseGui.bat" "%~f0" @%ComSpec% /c exit %Result% >nul
code-glue/WinScripts
KillAdb.bat
bat
mit
834
cmd_usr/initramfs_data.cpio := /bin/bash /home/mihawk/GitHub/Android_scheduler/kernel/goldfish/scripts/gen_initramfs_list.sh -o usr/initramfs_data.cpio -d
MihawkHu/Android_scheduler
kernel/goldfish/usr/.initramfs_data.cpio.cmd
bat
mit
157
cmd_drivers/net/ethernet/broadcom/built-in.o := rm -f drivers/net/ethernet/broadcom/built-in.o; arm-linux-androideabi-ar rcsD drivers/net/ethernet/broadcom/built-in.o
MihawkHu/Android_scheduler
kernel/goldfish/drivers/net/ethernet/broadcom/.built-in.o.cmd
bat
mit
168
# # Collect & kick items # debuglevel 5 setvariable item %1 var maxexp 34 Collect: save collect match Kick You manage to collect match Wait ...wait put play $play.song $play.style put collect %item matchwait 3 goto Collect Wait: pause 1 goto %s Kick: save Kick matchre CheckEXP You take a step back|Now what did the|I could not find match Wait ...wait put kick %item matchwait 20 CheckEXP: pause 0.2 if ($Outdoorsmanship.LearningRate >= %maxexp) then goto END goto Collect END: pause 1 put stop play put #parse COLLECT DONE
joemcbride/outlander
scripts/collect.cmd
bat
mit
550
@echo off SETLOCAL ENABLEDELAYEDEXPANSION set SCRIPT_PATH=%~dp0 set SCRIPT_PATH_ESCAPE=%SCRIPT_PATH:\=\\% If %PROCESSOR_ARCHITECTURE% == x86 ( for /f "delims=" %%i in ('C:\Windows\Sysnative\wsl.exe wslpath -ua "%SCRIPT_PATH_ESCAPE%"') do set "SCRIPT_PATH_WSL=%%i" ) Else ( for /f "delims=" %%i in ('wsl.exe wslpath -ua "%SCRIPT_PATH_ESCAPE%"') do set "SCRIPT_PATH_WSL=%%i" ) set PARAMS=%* set ESCAPED_PARAMS=%PARAMS:\=\\% If %PROCESSOR_ARCHITECTURE% == x86 ( C:\Windows\Sysnative\wsl.exe %SCRIPT_PATH_WSL%/wslgit %ESCAPED_PARAMS% ) Else ( C:\Windows\System32\wsl.exe %SCRIPT_PATH_WSL%/wslgit %ESCAPED_PARAMS% )
weikinhuang/dotfiles
utils/wsl/native-wrappers/git.bat
bat
mit
624
@echo off %~dp0bin\windows\python36\python.exe %~dp0avalon.py %*
mottosso/mindbender-setup
avalon.bat
bat
mit
64
Rem convert_ui_py.bat [ui file name without extension, e.g. Linker] %python3%\python -m PyQt5.uic.pyuic %1.ui -o %1.py
rmlockwood/FLExTrans
convert_ui_py.bat
bat
mit
118
@echo off call vars.cmd rem Build GitHub for Visual Studio NuGet restore .\GitHubVS.sln msbuild .\GitHubVS.sln /p:DeployExtension=False rem Build GitHub Essentials NuGet restore .\src\GitHub.VisualStudio.16.sln msbuild .\src\GitHub.VisualStudio.16.sln /p:DeployExtension=False
github/VisualStudio
build.cmd
bat
mit
280
cmd_sound/isa/ad1848/built-in.o := rm -f sound/isa/ad1848/built-in.o; /mnt/640/ubu/gtabkernelsrc/android_prebuilt_toolchains-master/arm-cortex_a15-linux-gnueabihf-linaro_4.9.1/bin/arm-cortex_a15-linux-gnueabihf-ar rcsD sound/isa/ad1848/built-in.o
chase2534/gtab47.freekern
sound/isa/ad1848/.built-in.o.cmd
bat
gpl-2.0
248
cmd_sound/spi/built-in.o := rm -f sound/spi/built-in.o; /home/adam/android/android-ndk-r5b/toolchains/arm-eabi-4.4.0/prebuilt/linux-x86/bin/arm-eabi-ar rcs sound/spi/built-in.o
damageless/linux-kernel-ican-tab
sound/spi/.built-in.o.cmd
bat
gpl-2.0
178
"C:\Program Files\HTML Help Workshop\hhc" ..\..\_src\Help\Approach.hhp move /Y ..\..\_src\Help\Approach.chm .\Approach.chm SET %ERRORLEVEL% = 0 if %1 NEQ 1 goto return echo Performing copying... copy .\Approach.chm ..\..\Setup\Common32\ :return
kerido/koapch
_proj/Help/Build.cmd
bat
gpl-2.0
250
cmd_sound/core/snd-hwdep.o := /home/adam/Android/Toolchains/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o sound/core/snd-hwdep.o sound/core/hwdep.o
arshull/GalaTab3_Kernel
sound/core/.snd-hwdep.o.cmd
bat
gpl-2.0
147
cmd_sound/pci/oxygen/built-in.o := rm -f sound/pci/oxygen/built-in.o; ../../CodeSourcery/CodeSourcery/bin/arm-none-eabi-ar rcs sound/pci/oxygen/built-in.o
spacecaker/CM7_Space_Kernel_Cooper
sound/pci/oxygen/.built-in.o.cmd
bat
gpl-2.0
156
cmd_drivers/char/hw_random/built-in.o := /home/lithium/CodeSourcery/Sourcery_G++_Lite/bin/arm-none-linux-gnueabi-ld -EL -r -o drivers/char/hw_random/built-in.o drivers/char/hw_random/rng-core.o
0xD34D/kernel_amazon_tate
drivers/char/hw_random/.built-in.o.cmd
bat
gpl-2.0
199
cmd_net/bluetooth/bluetooth.o := arm-linux-gnueabi-ld -EL -r -o net/bluetooth/bluetooth.o net/bluetooth/af_bluetooth.o net/bluetooth/hci_core.o net/bluetooth/hci_conn.o net/bluetooth/hci_event.o net/bluetooth/mgmt.o net/bluetooth/hci_sock.o net/bluetooth/hci_sysfs.o net/bluetooth/lib.o net/bluetooth/l2cap_core.o net/bluetooth/l2cap_sock.o net/bluetooth/smp.o net/bluetooth/sco.o
jpsminix/minix5
net/bluetooth/.bluetooth.o.cmd
bat
gpl-2.0
385
cmd_drivers/media/video/exynos/built-in.o := /home/yyoung.kim/Toolchain/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o drivers/media/video/exynos/built-in.o drivers/media/video/exynos/mdev/built-in.o drivers/media/video/exynos/fimc-lite/built-in.o drivers/media/video/exynos/fimc-is/built-in.o drivers/media/video/exynos/rotator/built-in.o
PrestigeMod/SHW-M440S
drivers/media/video/exynos/.built-in.o.cmd
bat
gpl-2.0
368
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\PostgresQueryAnalyser.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\PostgresQueryAnalyser.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) :end
WoLpH/pg_query_analyser
docs/make.bat
bat
gpl-3.0
5,125
: EnergyPlus Batch File for EP-Launch Program : Created on: 8 Mar 2000 by J. Glazer : Based on: RunE+.bat 17 AUG 99 by M.J. Witte : Revised: 17 Jul 2000, Linda Lawrie (beta 3 release) : 27 Sep 2000, Witte/Glazer - add saves for EP-Macro results : 17 Oct 2000, Lawrie - remove wthrfl option (BLAST weather) : 09 Feb 2001, Lawrie - Add siz and mtr options, use 3dl and sln files : 08 Aug 2001, Lawrie - add option for epinext environment variable : 09 Oct 2001, Lawrie - put in explanation of epinext environment variable : - also add eplusout.cif for Comis Input Report : 05 Dec 2001, Lawrie - add new eplusout.bnd (Branch/Node Details) : 17 Dec 2001, Glazer - explain eptype for no weather case : 19 Dec 2001, Lawrie - add eplusout.dbg, eplusout.trn, eplusmtr.csv : - also create eplusmtr.csv : 20 Sep 2002, Witte - Delete all "pausing" stops except the one right : after EnergyPlus.exe : 18 Feb 2003, Lawrie - change name of audit.out to eplusout.audit and save it : 29 Jul 2003, Glazer - add tabular report file handling : 21 Aug 2003, Lawrie - add "map" file handling : 21 Aug 2003, Lawrie - change to "styled" output for sizing, map and tabular files : 29 Aug 2003, Glazer - delete old .zsz and .ssz files if present : 8 Sep 2003, Glazer - add ReadVars txt and tab outputs : unlimited columns option : 09 Feb 2004, Lawrie - add DElight files : 30 Mar 2004, Glazer - get rid of TRN file : 30 Jul 2004, Glazer - added use of epout variable as part of groups in ep-launch : 22 Feb 2005, Glazer - added ExpandObjects preprocessor : 06 Jun 2006, Lawrie - remove cfp file, add shd file : 21 Aug 2006, Lawrie - add wrl file : 22 Aug 2006, Glazer - add convertESOMTR : 27 Nov 2006, Lawrie - add mdd file : 20 Feb 2007, Glazer - add csvProc : 03 Mar 2008, Glazer - add weather stat file copying : 04 Sep 2008, Lawrie - add sql output : 09 Jun 2009, Griffith - add edd output (for EMS) : 05 Feb 2010, Glazer - add basement and slab integration : 02 Aug 2010, Lawrie - add DFS (daylighting factors) output : 31 Aug 2010, Glazer - uses local temporary directory for use in multiple processors : : This batch file can execute EnergyPlus using either command line parameters : or environmental variables. The most common method is to use environmental : variables but for some systems that do not allow the creation of batch files : the parameter passing method should be used. When not passing parameters the : environmental variables are set as part of RUNEP.BAT file and are shown below : : The batch file should be called from the temporary working directory location. : : When passing parameters instead the first parameter (%1) should be PARAM and the other : parameters are shown in the list. : : %epin% or %1 contains the file with full path and no extensions for input files : : %epout% or %2 contains the file with full path and no extensions for output files : : %epinext% or %3 contains the extension of the file selected from the EP-Launch : program. Could be imf or idf -- having this parameter ensures that the : correct user selected file will be used in the run. : : %epwthr% or %4 contains the file with full path and extension for the weather file : : %eptype% or %5 contains either "EP" or "NONE" to indicate if a weather file is used : : %pausing% or %6 contains Y if pause should occur between major portions of : batch file : : %maxcol% or %7 contains "250" if limited to 250 columns otherwise contains : "nolimit" if unlimited (used when calling readVarsESO) : : %convESO% or %8 contains Y if convertESOMTR program should be called : : %procCSV% or %9 contains Y if csvProc program should be called : : : This batch file is designed to be used only in the EnergyPlus directory that : contains the EnergyPlus.exe, Energy+.idd and Energy+.ini files. : : EnergyPlus requires the following files as input: : : Energy+.ini - ini file with path to idd file (blank = current dir) : Energy+.idd - input data dictionary : In.idf - input data file (must be compatible with the idd version) : : In.epw - EnergyPlus format weather file : : EnergyPlus will create the following files: : : Eplusout.audit- Echo of input (Usually without echoing IDD) : Eplusout.end - A one line synopsis after the run (success/fail) : Eplusout.err - Error file : Eplusout.eso - Standard output file : Eplusout.eio - One time output file : Eplusout.rdd - Report variable data dictionary : Eplusout.dxf - DXF (from report, Surfaces, DXF;) : Eplusout.mtr - Meter output (similar to ESO format) : Eplusout.mtd - Meter Details (see what variable is on what meter) : Eplusout.bnd - Branch/Node Details Report File : Eplusout.dbg - A debugging file -- see Debug Output object for description : Others -- see "Clean up Working Directory for current list" : : The Post Processing Program (PPP) requires the following files as input: : : Eplusout.inp - PPP command file (specifies input and output files) : This file name is user specified as standard input on the command line : but we will standardize on Eplusout.inp (optional) : : Eplusout.eso - Input data (the standard output file from EnergyPlus) : This file name is user specified in Eplusout.inp but we will : standardize on Eplusout.eso (can also accept the eplusout.mtr file) : : : The Post Processing Program produces the following output files: : : Eplusout.csv - PPP output file in CSV format : This file name is user specified in Eplusout.inp but we will : standardize on Eplusout.csv : : This batch file will perform the following steps: : : 1. Clean up directory by deleting old working files from prior run : 2. Copy %1.idf (input) into In.idf (or %1.imf to in.imf) : 3. Copy %2 (weather) into In.epw : Run the Basement preprocessor program if necessary : Run the Slab preprocessor program if necessary : 4. Execute EnergyPlus : 5. If available Copy %1.rvi (post processor commands) into Eplusout.inp : If available Copy %1.mvi (post processor commands) into eplusmtr.inp : or create appropriate input to get meter output from eplusout.mtr : 6. Execute ReadVarsESO.exe (the Post Processing Program) : Execute ReadVarsESO.exe (the Post Processing Program) for meter output : 7. Copy Eplusout.* to %1.* : 8. Clean up directory. : : The EPL-RUN.BAT file should be may be either located in the same directory : as EnergyPlus.exe or in the temporary directory. If the batch file is in the same : directory as EnergyPlus.exe the program path is the same as the location : the batch file. If the batch file is in the temporary directory the path : for the location of EnergyPlus.exe will be passed as a parameter named epPath. cd\EnergyPlusV8-0-0\ SET program_path=C:\EnergyPlusV8-0-0\ :pause IF "C:\EnergyPlusV8-0-0\" NEQ "" SET program_path=C:\EnergyPlusV8-0-0\ : Set flag if the current directory is the same directory that EnergyPlus and the : batch file are located. :pause SET inEPdir=FALSE IF "%program_path%"=="C:\EnergyPlusV8-0-0\" SET inEPdir=TRUE echo Current Drive = %~d0 echo Current Path = %~p0 : pause : Set the variables if a command line is used :IF "%9"=="" GOTO skipSetParams SET epin=%~1 SET epout=%~2 SET epinext=idf SET epwthr=%~4 SET eptype=EP SET pausing=Y SET maxcol=250 SET convESO=Y SET procCSV=Y SET output_path=%~~10 SET post_proc=%program_path%PostProcess\ :if %pausing%==Y pause :skipSetParams : : 1. Clean up working directory IF EXIST eplusout.inp DEL eplusout.inp IF EXIST eplusout.end DEL eplusout.end IF EXIST eplusout.eso DEL eplusout.eso IF EXIST eplusout.rdd DEL eplusout.rdd IF EXIST eplusout.mdd DEL eplusout.mdd IF EXIST eplusout.dbg DEL eplusout.dbg IF EXIST eplusout.eio DEL eplusout.eio IF EXIST eplusout.err DEL eplusout.err IF EXIST eplusout.dxf DEL eplusout.dxf IF EXIST eplusout.csv DEL eplusout.csv IF EXIST eplusout.tab DEL eplusout.tab IF EXIST eplusout.txt DEL eplusout.txt IF EXIST eplusmtr.csv DEL eplusmtr.csv IF EXIST eplusmtr.tab DEL eplusmtr.tab IF EXIST eplusmtr.txt DEL eplusmtr.txt IF EXIST eplusout.sln DEL eplusout.sln IF EXIST epluszsz.csv DEL epluszsz.csv IF EXIST epluszsz.tab DEL epluszsz.tab IF EXIST epluszsz.txt DEL epluszsz.txt IF EXIST eplusssz.csv DEL eplusssz.csv IF EXIST eplusssz.tab DEL eplusssz.tab IF EXIST eplusssz.txt DEL eplusssz.txt IF EXIST eplusout.mtr DEL eplusout.mtr IF EXIST eplusout.mtd DEL eplusout.mtd IF EXIST eplusout.bnd DEL eplusout.bnd IF EXIST eplusout.dbg DEL eplusout.dbg IF EXIST eplusout.sci DEL eplusout.sci IF EXIST eplusmap.csv DEL eplusmap.csv IF EXIST eplusmap.txt DEL eplusmap.txt IF EXIST eplusmap.tab DEL eplusmap.tab IF EXIST eplustbl.csv DEL eplustbl.csv IF EXIST eplustbl.txt DEL eplustbl.txt IF EXIST eplustbl.tab DEL eplustbl.tab IF EXIST eplustbl.htm DEL eplustbl.htm IF EXIST eplusout.log DEL eplusout.log IF EXIST eplusout.svg DEL eplusout.svg IF EXIST eplusout.shd DEL eplusout.shd IF EXIST eplusout.wrl DEL eplusout.wrl IF EXIST eplusout.delightin DEL eplusout.delightin IF EXIST eplusout.delightout DEL eplusout.delightout IF EXIST eplusout.delighteldmp DEL eplusout.delighteldmp IF EXIST eplusout.delightdfdmp DEL eplusout.delightdfdmp IF EXIST eplusscreen.csv DEL eplusscreen.csv IF EXIST in.imf DEL in.imf IF EXIST in.idf DEL in.idf IF EXIST in.stat DEL in.stat IF EXIST out.idf DEL out.idf IF EXIST eplusout.inp DEL eplusout.inp IF EXIST in.epw DEL in.epw IF EXIST eplusout.audit DEL eplusout.audit IF EXIST eplusmtr.inp DEL eplusmtr.inp IF EXIST test.mvi DEL test.mvi IF EXIST expanded.idf DEL expanded.idf IF EXIST expandedidf.err DEL expandedidf.err IF EXIST readvars.audit DEL readvars.audit IF EXIST eplusout.sql DEL eplusout.sql IF EXIST sqlite.err DEL sqlite.err IF EXIST eplusout.edd DEL eplusout.edd IF EXIST eplusout.dfs DEL eplusout.dfs IF EXIST slab.int DEL slab.int IF EXIST BasementGHTIn.idf DEL BasementGHTIn.idf :if %pausing%==Y pause : 2. Copy input data file to working directory IF EXIST "%epout%.epmidf" DEL "%epout%.epmidf" IF EXIST "%epout%.epmdet" DEL "%epout%.epmdet" IF NOT EXIST "Energy+.idd" copy "%program_path%Energy+.idd" "Energy+.idd" IF NOT EXIST "Energy+.ini" copy "%program_path%Energy+.ini" "Energy+.ini" if "%epinext%" == "" set epinext=idf if exist "%epin%.%epinext%" copy "%epin%.%epinext%" in.%epinext% if exist in.imf "%program_path%EPMacro" if exist out.idf copy out.idf "%epout%.epmidf" if exist audit.out copy audit.out "%epout%.epmdet" if exist audit.out erase audit.out if exist out.idf MOVE out.idf in.idf if exist in.idf "%program_path%ExpandObjects" if exist expandedidf.err COPY expandedidf.err eplusout.end if exist expanded.idf COPY expanded.idf "%epout%.expidf" if exist expanded.idf MOVE expanded.idf in.idf if not exist in.idf copy "%epin%.idf" In.idf :if %pausing%==Y pause : 3. Test for weather file type and copy to working directory if %eptype%==EP copy "%epwthr%" In.epw : Convert from an extension of .epw to .stat if %eptype%==EP SET wthrstat=%epwthr:~0,-4%.stat if %eptype%==EP copy "%wthrstat%" in.stat :if %pausing%==Y pause : Run the Basement preprocessor program if necessary IF EXIST "%epin%.bsmt" COPY "%epin%.bsmt" EPObjects.txt IF EXIST BasementGHTIn.idf DEL EPObjects.txt IF NOT EXIST BasementGHTIn.idf GOTO :skipBasement IF EXIST eplusout.end DEL eplusout.end IF EXIST audit.out DEL audit.out IF EXIST basementout.audit DEL basementout.audit IF EXIST "%epout%_bsmt.csv" ERASE "%epout%_bsmt.csv" IF EXIST "%epout%_bsmt.audit" ERASE "%epout%_bsmt.audit" IF EXIST "%epout%_bsmt.out" ERASE "%epout%_bsmt.out" IF EXIST "%epout%_out_bsmt.idf" ERASE "%epout%_out_bsmt.idf" IF EXIST "%program_path%PreProcess\GrndTempCalc\BasementGHT.idd" COPY "%program_path%PreProcess\GrndTempCalc\BasementGHT.idd" BasementGHT.idd ECHO Begin Basement Temperature Calculation processing . . . "%program_path%PreProcess\GrndTempCalc\Basement.exe" IF EXIST "MonthlyResults.csv" MOVE "MonthlyResults.csv" "%epout%_bsmt.csv" IF EXIST "RunINPUT.TXT" MOVE "RunINPUT.TXT" "%epout%_bsmt.out" IF EXIST "RunDEBUGOUT.txt" MOVE "RunDEBUGOUT.txt" basementout.audit IF NOT EXIST basementout.audit echo Basement Audit File > basementout.audit IF EXIST audit.out copy basementout.audit + audit.out basementout.audit IF EXIST "eplusout.err" copy basementout.audit + eplusout.err basementout.audit IF EXIST basementout.audit MOVE basementout.audit "%epout%_bsmt.audit" IF EXIST eplusout.end DEL eplusout.end IF EXIST audit.out DEL audit.out IF EXIST basementout.audit DEL basementout.audit IF EXIST EPObjects.txt COPY EPObjects.txt "%epin%.bsmt" IF EXIST BasementGHTIn.idf DEL BasementGHTIn.idf IF EXIST BasementGHT.idd DEL BasementGHT.idd :skipBasement IF EXIST EPObjects.txt COPY in.idf+EPObjects.txt in.idf /B IF EXIST EPObjects.txt COPY "%epout%.expidf"+EPObjects.txt "%epout%.expidf" /B IF EXIST EPObjects.txt DEL EPObjects.txt : Run the Slab preprocessor program if necessary IF EXIST "%epin%.slab" COPY "%epin%.slab" SLABSurfaceTemps.TXT IF EXIST GHTIn.idf DEL SLABSurfaceTemps.TXT IF NOT EXIST GHTIn.idf GOTO :skipSlab IF EXIST eplusout.end DEL eplusout.end IF EXIST SLABINP.TXT DEL SLABINP.TXT IF EXIST "SLABSplit Surface Temps.TXT" DEL "SLABSplit Surface Temps.TXT" IF EXIST audit.out DEL audit.out IF EXIST "%epout%_slab.ger" ERASE "%epout%_slab.ger" IF EXIST "%program_path%PreProcess\GrndTempCalc\SlabGHT.idd" COPY "%program_path%PreProcess\GrndTempCalc\SlabGHT.idd" SlabGHT.idd ECHO Begin Slab Temperature Calculation processing . . . "%program_path%PreProcess\GrndTempCalc\Slab.exe" IF EXIST eplusout.err MOVE eplusout.err "%epout%_slab.ger" IF EXIST SLABINP.TXT MOVE SLABINP.TXT "%epout%_slab.out" IF EXIST eplusout.end DEL eplusout.end IF EXIST "SLABSplit Surface Temps.TXT" DEL "SLABSplit Surface Temps.TXT" IF EXIST audit.out DEL audit.out IF EXIST SLABSurfaceTemps.TXT COPY SLABSurfaceTemps.TXT "%epin%.slab" IF EXIST GHTIn.idf DEL GHTIn.idf IF EXIST SlabGHT.idd DEL SlabGHT.idd :skipSlab IF EXIST SLABSurfaceTemps.TXT COPY in.idf+SLABSurfaceTemps.TXT in.idf /B IF EXIST SLABSurfaceTemps.TXT COPY "%epout%.expidf"+SLABSurfaceTemps.TXT "%epout%.expidf" /B IF EXIST SLABSurfaceTemps.TXT DEL SLABSurfaceTemps.TXT :if %pausing%==Y pause : 4. Execute EnergyPlus "%program_path%EnergyPlus" :if %pausing%==Y pause : 5. Copy Post Processing Program command file(s) to working directory IF EXIST "%epin%.rvi" copy "%epin%.rvi" Eplusout.inp IF EXIST "%epin%.mvi" copy "%epin%.mvi" Eplusmtr.inp :if %pausing%==Y pause : 6&8. Copy Post Processing Program command file(s) to working directory IF EXIST "%input_path%%~1.rvi" copy "%input_path%%~1.rvi" eplusout.inp IF EXIST "%input_path%%~1.mvi" copy "%input_path%%~1.mvi" eplusmtr.inp : 7&9. Run Post Processing Program(s) if %maxcol%==250 SET rvset= if %maxcol%==nolimit SET rvset=unlimited : readvars creates audit in append mode. start it off echo %date% %time% ReadVars >readvars.audit IF EXIST eplusout.inp %post_proc%ReadVarsESO.exe eplusout.inp %rvset% IF NOT EXIST eplusout.inp %post_proc%ReadVarsESO.exe " " %rvset% IF EXIST eplusmtr.inp %post_proc%ReadVarsESO.exe eplusmtr.inp %rvset% IF NOT EXIST eplusmtr.inp echo eplusout.mtr >test.mvi IF NOT EXIST eplusmtr.inp echo eplusmtr.csv >>test.mvi IF NOT EXIST eplusmtr.inp %post_proc%ReadVarsESO.exe test.mvi %rvset% IF EXIST eplusout.bnd %post_proc%HVAC-Diagram.exe : 10. Move output files to output path IF EXIST eplusout.eso MOVE eplusout.eso "%output_path%%~1.eso" IF EXIST eplusout.rdd MOVE eplusout.rdd "%output_path%%~1.rdd" IF EXIST eplusout.mdd MOVE eplusout.mdd "%output_path%%~1.mdd" IF EXIST eplusout.eio MOVE eplusout.eio "%output_path%%~1.eio" IF EXIST eplusout.err MOVE eplusout.err "%output_path%%~1.err" IF EXIST eplusout.dxf MOVE eplusout.dxf "%output_path%%~1.dxf" IF EXIST eplusout.csv MOVE eplusout.csv "%output_path%%~1.csv" IF EXIST eplusout.tab MOVE eplusout.tab "%output_path%%~1.tab" IF EXIST eplusout.txt MOVE eplusout.txt "%output_path%%~1.txt" IF EXIST eplusmtr.csv MOVE eplusmtr.csv "%output_path%%~1Meter.csv" IF EXIST eplusmtr.tab MOVE eplusmtr.tab "%output_path%%~1Meter.tab" IF EXIST eplusmtr.txt MOVE eplusmtr.txt "%output_path%%~1Meter.txt" IF EXIST eplusout.sln MOVE eplusout.sln "%output_path%%~1.sln" IF EXIST epluszsz.csv MOVE epluszsz.csv "%output_path%%~1Zsz.csv" IF EXIST epluszsz.tab MOVE epluszsz.tab "%output_path%%~1Zsz.tab" IF EXIST epluszsz.txt MOVE epluszsz.txt "%output_path%%~1Zsz.txt" IF EXIST eplusssz.csv MOVE eplusssz.csv "%output_path%%~1Ssz.csv" IF EXIST eplusssz.tab MOVE eplusssz.tab "%output_path%%~1Ssz.tab" IF EXIST eplusssz.txt MOVE eplusssz.txt "%output_path%%~1Ssz.txt" IF EXIST eplusout.mtr MOVE eplusout.mtr "%output_path%%~1.mtr" IF EXIST eplusout.mtd MOVE eplusout.mtd "%output_path%%~1.mtd" IF EXIST eplusout.bnd MOVE eplusout.bnd "%output_path%%~1.bnd" IF EXIST eplusout.dbg MOVE eplusout.dbg "%output_path%%~1.dbg" IF EXIST eplusout.sci MOVE eplusout.sci "%output_path%%~1.sci" IF EXIST eplusmap.csv MOVE eplusmap.csv "%output_path%%~1Map.csv" IF EXIST eplusmap.tab MOVE eplusmap.tab "%output_path%%~1Map.tab" IF EXIST eplusmap.txt MOVE eplusmap.txt "%output_path%%~1Map.txt" IF EXIST eplusout.audit MOVE eplusout.audit "%output_path%%~1.audit" IF EXIST eplustbl.csv MOVE eplustbl.csv "%output_path%%~1Table.csv" IF EXIST eplustbl.tab MOVE eplustbl.tab "%output_path%%~1Table.tab" IF EXIST eplustbl.txt MOVE eplustbl.txt "%output_path%%~1Table.txt" IF EXIST eplustbl.htm MOVE eplustbl.htm "%output_path%%~1Table.html" IF EXIST eplusout.delightin MOVE eplusout.delightin "%output_path%%~1DElight.in" IF EXIST eplusout.delightout MOVE eplusout.delightout "%output_path%%~1DElight.out" IF EXIST eplusout.delighteldmp MOVE eplusout.delighteldmp "%output_path%%~1DElight.eldmp" IF EXIST eplusout.delightdfdmp MOVE eplusout.delightdfdmp "%output_path%%~1DElight.dfdmp" IF EXIST eplusout.svg MOVE eplusout.svg "%output_path%%~1.svg" IF EXIST eplusout.shd MOVE eplusout.shd "%output_path%%~1.shd" IF EXIST eplusout.wrl MOVE eplusout.wrl "%output_path%%~1.wrl" IF EXIST eplusscreen.csv MOVE eplusscreen.csv "%output_path%%~1Screen.csv" IF EXIST expandedidf.err copy expandedidf.err+eplusout.err "%output_path%%~1.err" IF EXIST readvars.audit MOVE readvars.audit "%output_path%%~1.rvaudit" IF EXIST eplusout.sql MOVE eplusout.sql "%output_path%%~1.sql" IF EXIST eplusout.edd MOVE eplusout.edd "%output_path%%~1.edd" IF EXIST eplusout.dfs MOVE eplusout.dfs "%output_path%%~1DFS.csv" : 11. Clean up directory. ECHO Removing extra files . . . IF EXIST eplusout.inp DEL eplusout.inp IF EXIST eplusmtr.inp DEL eplusmtr.inp IF EXIST in.idf DEL in.idf IF EXIST in.imf DEL in.imf IF EXIST in.epw DEL in.epw IF EXIST in.stat DEL in.stat IF EXIST eplusout.dbg DEL eplusout.dbg IF EXIST test.mvi DEL test.mvi IF EXIST expandedidf.err DEL expandedidf.err IF EXIST readvars.audit DEL readvars.audit IF EXIST sqlite.err DEL sqlite.err IF "%inEPdir%"=="FALSE" DEL Energy+.idd IF "%inEPdir%"=="FALSE" DEL Energy+.ini :done echo ===== %0 %~1 ===== Complete =====
Gerilla-Project/gerilla-for-grasshopper
GerillaInstall/Gerilla/gerillaBatchTemplate.bat
bat
gpl-3.0
19,989
@echo off mkdir data mkdir output C:\Python27\python.exe -m pip install requests C:\Python27\python.exe -m pip install bs4 C:\Python27\python.exe -m pip install easy_date echo All set! pause
davidbouman/sugg-script
setup.bat
bat
gpl-3.0
199
cd html\texi mkdir tmp cd tmp perl ..\..\..\jamal.pl ..\%1.texi.jam %1.texi perl ..\..\..\t2h.pl %1.texi %1 mkdir ..\..\..\..\html\texi\ copy %1.texi ..\..\..\..\html\texi\ gzip %1.texi copy %1.texi.gz ..\..\..\..\html\texi\ copy %1.html ..\..\..\..\html\texi\ gzip %1.html copy %1.html.gz ..\..\..\..\html\texi\ hhc %1.hhp copy %1.chm ..\..\..\..\html\texi\ tar cfz %1.html.tgz *.html copy %1.html.tgz ..\..\..\..\html\texi\ rm -rf ..\..\..\..\html\texi\%1 mkdir ..\..\..\..\html\texi\%1 copy *.html ..\..\..\..\html\texi\%1\ tex -silent %1.texi tex -silent %1.texi dvips %1.dvi gzip %1.ps dvipdfm %1.dvi copy %1.ps.gz ..\..\..\..\html\texi\ copy %1.pdf ..\..\..\..\html\texi\ gzip %1.pdf copy %1.pdf.gz ..\..\..\..\html\texi\ tar cfz %1.tgz *.bas copy %1.tgz ..\..\..\..\html\texi\ cd .. rm -rf tmp cd ..\..
verhas/ScriptBasic
mksamples.cmd
bat
lgpl-2.1
818
@echo off CALL config_igsn30_test.cmd CALL classpath.cmd java %PANFMP_TOOLS_JAVA_OPTIONS% -Dlog4j.configuration=file:%PANFMP_TOOLS_LOG4J_CONFIG% de.pangaea.metadataportal.harvester.Harvester %PANFMP_CONFIG% %1
AuScope/NatPortalIGSN
panFMP/panFMP-1.1.0/scripts/harvest_igsn30_test.cmd
bat
lgpl-3.0
210
@headsup.py %*
SkyLined/headsup
headsup.cmd
bat
apache-2.0
14
@rem Licensed to the Apache Software Foundation (ASF) under one @rem or more contributor license agreements. See the NOTICE file @rem distributed with this work for additional information @rem regarding copyright ownership. The ASF licenses this file @rem to you under the Apache License, Version 2.0 (the @rem "License"); you may not use this file except in compliance @rem with the License. You may obtain a copy of the License at @rem @rem http://www.apache.org/licenses/LICENSE-2.0 @rem @rem Unless required by applicable law or agreed to in writing, @rem software distributed under the License is distributed on an @rem "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY @rem KIND, either express or implied. See the License for the @rem specific language governing permissions and limitations @rem under the License. @echo on @rem Avoid picking up AppVeyor-installed OpenSSL (linker errors with gRPC) @rem XXX Perhaps there is a smarter way of solving this issue? rd /s /q C:\OpenSSL-Win32 rd /s /q C:\OpenSSL-Win64 rd /s /q C:\OpenSSL-v11-Win32 rd /s /q C:\OpenSSL-v11-Win64 rd /s /q C:\OpenSSL-v111-Win32 rd /s /q C:\OpenSSL-v111-Win64 conda config --set auto_update_conda false conda info -a conda config --set show_channel_urls True @rem Help with SSL timeouts to S3 conda config --set remote_connect_timeout_secs 12 conda info -a if "%GENERATOR%"=="Ninja" set need_vcvarsall=1 if defined need_vcvarsall ( @rem Select desired compiler version if "%APPVEYOR_BUILD_WORKER_IMAGE%" == "Visual Studio 2017" ( call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" amd64 ) else ( call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64 ) ) if "%GENERATOR%"=="Ninja" conda install -y -q ninja if "%USE_CLCACHE%" == "true" ( @rem Use clcache for faster builds pip install -q git+https://github.com/frerich/clcache.git @rem Limit cache size to 500 MB clcache -M 500000000 clcache -c clcache -s powershell.exe -Command "Start-Process clcache-server" )
majetideepak/arrow
ci/appveyor-cpp-setup.bat
bat
apache-2.0
2,105
docker run --rm -v /var/run/docker.sock:/var/run/docker.sock -e DOCKER_HOST_IP=%DOCKER_HOST_IP% -e ZK=%DOCKER_HOST_IP%:2181 -it kafka_kafka:latest /bin/bash
mvs5465/jpo-ode
docker/kafka/start-kafka-shell.cmd
bat
apache-2.0
157
@echo off echo Installing HCK Controller and Studio. This will take a VERY long time! echo SERIOUSLY! IT CAN TAKE OVER AN HOUR! echo Grab yourself a meal! echo Waiting 30s... timeout /t 30 /nobreak > NUL echo Performing the installation - be VERY patient! "\\REPLACE-SMB-ADDRESS\qemu\Hardware Certification Kit\HCKSetup.exe" /q if not errorlevel 0 ( echo "FAILED" exit /B 1 ) else ( echo "SUCEEDED" ) echo Installing HCK Filters... expand -i "\\REPLACE-SMB-ADDRESS\qemu\HCKFilterUpdates.cab" -f:UpdateFilters.sql "C:\Program Files (x86)\Windows Kits\REPLACE-HCK-VERSION\Hardware Certification Kit\Controller" cd "C:\Program Files (x86)\Windows Kits\REPLACE-HCK-VERSION\Hardware Certification Kit\Controller" "C:\Program Files (x86)\Windows Kits\REPLACE-HCK-VERSION\Hardware Certification Kit\Controller\updatefilters.exe" if not errorlevel 0 ( echo "FAILED" exit /B 1 ) else ( echo "SUCEEDED" ) echo Press ENTER to reboot the system... pause > NUL shutdown /t 10 /r /f
igord-daynix/VirtHCK
guest_tools/RemoteHCK/CONTROLLER_INSTALL.bat
bat
bsd-3-clause
997
@ECHO OFF @setlocal :: :: Edit this line to run the batch file for Qt environment. :: ::call "C:\Qt\Qt5.4.1-MinGW\5.4\mingw491_32\bin\qtenv2.bat" ::call "C:\Qt\Qt5.5.1-MinGW\5.5\mingw492_32\bin\qtenv2.bat" ::call "C:\Qt\Qt5.4.1\5.4\msvc2013_64_opengl\bin\qtenv2.bat" call "C:\Qt\Qt5.5.1\5.5\msvc2013_64\bin\qtenv2.bat" call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" amd64 cd /D %~dp0 call compile_install.bat pause exit /b
Akhilesh05/treefrog-framework
build.bat
bat
bsd-3-clause
472
@echo off SETLOCAL TITLE Elasticsearch Service 1.4.0 if NOT DEFINED JAVA_HOME goto err set SCRIPT_DIR=%~dp0 for %%I in ("%SCRIPT_DIR%..") do set ES_HOME=%%~dpfI rem Detect JVM version to figure out appropriate executable to use if not exist "%JAVA_HOME%\bin\java.exe" ( echo JAVA_HOME points to an invalid Java installation (no java.exe found in "%JAVA_HOME%"^). Exiting... goto:eof ) "%JAVA_HOME%\bin\java" -version 2>&1 | find "64-Bit" >nul: if errorlevel 1 goto x86 set EXECUTABLE=%ES_HOME%\bin\elasticsearch-service-x64.exe set SERVICE_ID=elasticsearch-service-x64 set ARCH=64-bit goto checkExe :x86 set EXECUTABLE=%ES_HOME%\bin\elasticsearch-service-x86.exe set SERVICE_ID=elasticsearch-service-x86 set ARCH=32-bit :checkExe if EXIST "%EXECUTABLE%" goto okExe echo elasticsearch-service-(x86|x64).exe was not found... :okExe set ES_VERSION=1.4.0 if "%LOG_DIR%" == "" set LOG_DIR=%ES_HOME%\logs if "x%1x" == "xx" goto displayUsage set SERVICE_CMD=%1 shift if "x%1x" == "xx" goto checkServiceCmd set SERVICE_ID=%1 :checkServiceCmd if "%LOG_OPTS%" == "" set LOG_OPTS=--LogPath "%LOG_DIR%" --LogPrefix "%SERVICE_ID%" --StdError auto --StdOutput auto if /i %SERVICE_CMD% == install goto doInstall if /i %SERVICE_CMD% == remove goto doRemove if /i %SERVICE_CMD% == start goto doStart if /i %SERVICE_CMD% == stop goto doStop if /i %SERVICE_CMD% == manager goto doManagment echo Unknown option "%SERVICE_CMD%" :displayUsage echo. echo Usage: service.bat install^|remove^|start^|stop^|manager [SERVICE_ID] goto:eof :doStart "%EXECUTABLE%" //ES//%SERVICE_ID% %LOG_OPTS% if not errorlevel 1 goto started echo Failed starting '%SERVICE_ID%' service goto:eof :started echo The service '%SERVICE_ID%' has been started goto:eof :doStop "%EXECUTABLE%" //SS//%SERVICE_ID% %LOG_OPTS% if not errorlevel 1 goto stopped echo Failed stopping '%SERVICE_ID%' service goto:eof :stopped echo The service '%SERVICE_ID%' has been stopped goto:eof :doManagment set EXECUTABLE_MGR=%ES_HOME%\bin\elasticsearch-service-mgr.exe "%EXECUTABLE_MGR%" //ES//%SERVICE_ID% if not errorlevel 1 goto managed echo Failed starting service manager for '%SERVICE_ID%' goto:eof :managed echo Succesfully started service manager for '%SERVICE_ID%'. goto:eof :doRemove rem Remove the service "%EXECUTABLE%" //DS//%SERVICE_ID% %LOG_OPTS% if not errorlevel 1 goto removed echo Failed removing '%SERVICE_ID%' service goto:eof :removed echo The service '%SERVICE_ID%' has been removed goto:eof :doInstall echo Installing service : "%SERVICE_ID%" echo Using JAVA_HOME (%ARCH%): "%JAVA_HOME%" rem Check JVM server dll first set JVM_DLL=%JAVA_HOME%\jre\bin\server\jvm.dll if exist "%JVM_DLL%" goto foundJVM rem Check 'server' JRE (JRE installed on Windows Server) set JVM_DLL=%JAVA_HOME%\bin\server\jvm.dll if exist "%JVM_DLL%" goto foundJVM rem Fallback to 'client' JRE set JVM_DLL=%JAVA_HOME%\bin\client\jvm.dll if exist "%JVM_DLL%" ( echo Warning: JAVA_HOME points to a JRE and not JDK installation; a client (not a server^) JVM will be used... ) else ( echo JAVA_HOME points to an invalid Java installation (no jvm.dll found in "%JAVA_HOME%"^). Existing... goto:eof ) :foundJVM if "%ES_MIN_MEM%" == "" set ES_MIN_MEM=256m if "%ES_MAX_MEM%" == "" set ES_MAX_MEM=1g if NOT "%ES_HEAP_SIZE%" == "" set ES_MIN_MEM=%ES_HEAP_SIZE% if NOT "%ES_HEAP_SIZE%" == "" set ES_MAX_MEM=%ES_HEAP_SIZE% call:convertxm %ES_MIN_MEM% JVM_XMS call:convertxm %ES_MAX_MEM% JVM_XMX REM java_opts might be empty - init to avoid tripping commons daemon (if the command starts with ;) if "%JAVA_OPTS%" == "" set JAVA_OPTS=-XX:+UseParNewGC CALL %ES_HOME%\bin\elasticsearch.in.bat rem thread stack size set JVM_SS=256 if "%DATA_DIR%" == "" set DATA_DIR=%ES_HOME%\data if "%WORK_DIR%" == "" set WORK_DIR=%ES_HOME% if "%CONF_DIR%" == "" set CONF_DIR=%ES_HOME%\config if "%CONF_FILE%" == "" set CONF_FILE=%ES_HOME%\config\elasticsearch.yml set ES_PARAMS=-Delasticsearch;-Des.path.home="%ES_HOME%";-Des.default.config="%CONF_FILE%";-Des.default.path.home="%ES_HOME%";-Des.default.path.logs="%LOG_DIR%";-Des.default.path.data="%DATA_DIR%";-Des.default.path.work="%WORK_DIR%";-Des.default.path.conf="%CONF_DIR%" set JVM_OPTS=%JAVA_OPTS: =;% if not "%ES_JAVA_OPTS%" == "" set JVM_ES_JAVA_OPTS=%ES_JAVA_OPTS: =#% if not "%ES_JAVA_OPTS%" == "" set JVM_OPTS=%JVM_OPTS%;%JVM_ES_JAVA_OPTS% if "%ES_START_TYPE%" == "" set ES_START_TYPE=manual if "%ES_STOP_TIMEOUT%" == "" set ES_STOP_TIMEOUT=0 "%EXECUTABLE%" //IS//%SERVICE_ID% --Startup %ES_START_TYPE% --StopTimeout %ES_STOP_TIMEOUT% --StartClass org.elasticsearch.bootstrap.Elasticsearch --StopClass org.elasticsearch.bootstrap.Elasticsearch --StartMethod main --StopMethod close --Classpath "%ES_CLASSPATH%" --JvmSs %JVM_SS% --JvmMs %JVM_XMS% --JvmMx %JVM_XMX% --JvmOptions %JVM_OPTS% ++JvmOptions %ES_PARAMS% %LOG_OPTS% --PidFile "%SERVICE_ID%.pid" --DisplayName "Elasticsearch %ES_VERSION% (%SERVICE_ID%)" --Description "Elasticsearch %ES_VERSION% Windows Service - http://elasticsearch.org" --Jvm "%JVM_DLL%" --StartMode jvm --StopMode jvm --StartPath "%ES_HOME%" if not errorlevel 1 goto installed echo Failed installing '%SERVICE_ID%' service goto:eof :installed echo The service '%SERVICE_ID%' has been installed. goto:eof :err echo JAVA_HOME environment variable must be set! pause goto:eof rem --- rem Function for converting Xm[s|x] values into MB which Commons Daemon accepts rem --- :convertxm set value=%~1 rem extract last char (unit) set unit=%value:~-1% rem assume the unit is specified set conv=%value:~0,-1% if "%unit%" == "k" goto kilo if "%unit%" == "K" goto kilo if "%unit%" == "m" goto mega if "%unit%" == "M" goto mega if "%unit%" == "g" goto giga if "%unit%" == "G" goto giga rem no unit found, must be bytes; consider the whole value set conv=%value% rem convert to KB set /a conv=%conv% / 1024 :kilo rem convert to MB set /a conv=%conv% / 1024 goto mega :giga rem convert to MB set /a conv=%conv% * 1024 :mega set "%~2=%conv%" goto:eof ENDLOCAL
bfeldman24/clositt
lib/elasticsearch-1.4.0/bin/service.bat
bat
mit
5,985
cmd_net/built-in.o := arm-eabi-ld -EL -r -o net/built-in.o net/socket.o net/core/built-in.o net/llc/built-in.o net/ethernet/built-in.o net/802/built-in.o net/sched/built-in.o net/netlink/built-in.o net/netfilter/built-in.o net/ipv4/built-in.o net/xfrm/built-in.o net/unix/built-in.o net/ipv6/built-in.o net/packet/built-in.o net/key/built-in.o net/bridge/built-in.o net/bluetooth/built-in.o net/wireless/built-in.o net/rfkill/built-in.o net/sysctl_net.o net/wimax/built-in.o net/activity_stats.o
TroNit/BlackDome_New_supersonic
net/.built-in.o.cmd
bat
gpl-2.0
501
@echo off TITLE Elywing server software for Minecraft: Pocket Edition // No Real utility cd /d %~dp0 if exist bin\php\php.exe ( set PHPRC="" set PHP_BINARY=bin\php\php.exe ) else ( set PHP_BINARY=php ) if exist Elywing*.phar ( set POCKETMINE_FILE=Elywing*.phar ) else ( if exist Elywing.phar ( set POCKETMINE_FILE=Elywing.phar ) else ( if exist src\pocketmine\PocketMine.php ( set POCKETMINE_FILE=src\pocketmine\PocketMine.php ) else ( echo "Couldn't find a valid Elywing installation" pause exit 1 ) ) REM if exist bin\php\php_wxwidgets.dll ( REM %PHP_BINARY% %POCKETMINE_FILE% --enable-gui %* REM ) else ( if exist bin\mintty.exe ( start "" bin\mintty.exe -o Columns=88 -o Rows=32 -o AllowBlinking=0 -o FontQuality=3 -o Font="Consolas" -o FontHeight=10 -o CursorType=0 -o CursorBlinks=1 -h error -t "Elywing" -w max %PHP_BINARY% %POCKETMINE_FILE% --enable-ansi %* ) else ( %PHP_BINARY% -c bin\php %POCKETMINE_FILE% %* ) REM )
H4PM/Elywing
start.cmd
bat
lgpl-3.0
990
"%PYTHON%" setup.py install if errorlevel 1 exit 1 "%PYTHON%" setup.py test :: Add more build steps here, if they are necessary. :: See :: http://docs.continuum.io/conda/build.html :: for a list of environment variables that are set during the build process.
kayarre/condarecipes
pyfr/bld.bat
bat
bsd-2-clause
261
@ECHO OFF ECHO + Testing w32-testival.exe: IF NOT EXIST "%CD%\writeconsole-shellcodes\w32-writeconsole-shellcode.bin" ( ECHO * Cannot find w32-writeconsole-shellcode.bin for testing. EXIT /B 0 ) ECHO + JMP to EIP "%~dp0buildexew32-testival.exe" a[$]="%CD%\writeconsole-shellcodes\w32-writeconsole-shellcode.bin" eip=$ --EH 2>&1 | CALL match_output.cmd "Hello, world![\r\n]*" --verbose >nul IF ERRORLEVEL 1 GOTO :FAILED ECHO + RET to EIP "%~dp0build\exe\w32-testival.exe" a[$]="%CD%\writeconsole-shellcodes\w32-writeconsole-shellcode.bin" eip=$ --ret --EH 2>&1 | CALL match_output.cmd "Hello, world![\r\n]*" --verbose >nul IF ERRORLEVEL 1 GOTO :FAILED ECHO + Set ESP and ret-into-libc "%~dp0build\exe\w32-testival.exe" [$+2000]=$+2004 a[$+2004]="%CD%\writeconsole-shellcodes\w32-writeconsole-shellcode.bin" esp=$+2000 --ret --EH --mem:size=4000 2>&1 | CALL match_output.cmd "Hello, world![\r\n]*" --verbose >nul IF ERRORLEVEL 1 GOTO :FAILED ECHO + Set ESP and JMP to RIP "%~dp0build\exe\w32-testival.exe" a[$+2004]="%CD%\writeconsole-shellcodes\w32-writeconsole-shellcode.bin" esp=$+800 eip=$+2004 --mem:size=4000 --EH 2>&1 | CALL match_output.cmd "Hello, world![\r\n]*" --verbose >nul IF ERRORLEVEL 1 GOTO :FAILED ECHO + Detect NULL pointer execution AV "%~dp0build\exe\w32-testival.exe" eip=0 --EH 2>&1 | CALL match_output.cmd "Second chance access violation while executing \[0x00000000\]: no memory allocated\.[\r\n]*" --verbose >nul IF ERRORLEVEL 1 GOTO :FAILED ECHO + Load DLL with writeconsole shellcode "%~dp0build\exe\w32-testival.exe" --loadlibrary "%CD%\writeconsole-shellcodes\w32-writeconsole-shellcode.dll" 2>&1 | CALL match_output.cmd "Hello, world![\r\n]*" --verbose >nul IF ERRORLEVEL 1 GOTO :FAILED EXIT /B %ERRORLEVEL% :FAILED ECHO * Test failed! EXIT /B %ERRORLEVEL%
ohio813/testival
test-w32-testival.cmd
bat
bsd-3-clause
1,888
@echo off REM Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file REM for details. All rights reserved. Use of this source code is governed by a REM BSD-style license that can be found in the LICENSE file. setlocal rem Handle the case where dart-sdk/bin has been symlinked to. set DIR_NAME_WITH_SLASH=%~dp0 set DIR_NAME=%DIR_NAME_WITH_SLASH:~0,-1%% call :follow_links "%DIR_NAME%", RETURNED_BIN_DIR rem Get rid of surrounding quotes. for %%i in ("%RETURNED_BIN_DIR%") do set BIN_DIR=%%~fi rem Get absolute full name for SDK_DIR. for %%i in ("%BIN_DIR%\..\") do set SDK_DIR=%%~fi rem Remove trailing backslash if there is one IF %SDK_DIR:~-1%==\ set SDK_DIR=%SDK_DIR:~0,-1% set DART=%BIN_DIR%\dart set SNAPSHOT=%BIN_DIR%\snapshots\dart2js.dart.snapshot set EXTRA_OPTIONS= set EXTRA_VM_OPTIONS= if _%DART2JS_DEVELOPER_MODE%_ == _1_ ( set EXTRA_VM_OPTIONS=%EXTRA_VM_OPTIONS% --enable-asserts ) if exist "%SNAPSHOT%" ( set EXTRA_OPTIONS=%EXTRA_OPTIONS% "--libraries-spec=%SDK_DIR%\lib\libraries.json" ) rem We allow extra vm options to be passed in through an environment variable. if not "_%DART_VM_OPTIONS%_" == "__" ( set EXTRA_VM_OPTIONS=%EXTRA_VM_OPTIONS% %DART_VM_OPTIONS% ) "%DART%" %EXTRA_VM_OPTIONS% "%SNAPSHOT%" %EXTRA_OPTIONS% %* endlocal exit /b %errorlevel% :follow_links setlocal for %%i in (%1) do set result=%%~fi set current= for /f "usebackq tokens=2 delims=[]" %%i in (`dir /a:l "%~dp1" 2^>nul ^ ^| %SystemRoot%\System32\find.exe "> %~n1 [" 2^>nul`) do ( set current=%%i ) if not "%current%"=="" call :follow_links "%current%", result endlocal & set %~2=%result% goto :eof :end
dart-lang/sdk
sdk/bin/dart2js_sdk.bat
bat
bsd-3-clause
1,686
@echo off set ELASTICSEARCH_HOME=%SOFTWARE_DIR%\elasticsearch-1.7.1 set PATH=%ELASTICSEARCH_HOME%\bin;%PATH%
sjahreis/seu-as-code.packages
co.elastic/elasticsearch/1.7.1/files/set-env-elasticsearch.cmd
bat
apache-2.0
109
@echo off setlocal for /f "tokens=1,2,4 delims=, " %%i in ('tools\m4 -P farversion.inc.m4') do ( set major=%%i set minor=%%j set build=%%k ) set tag=builds/%major%.%minor%.%build% for /f "tokens=2 delims=:" %%f in ('chcp') do set current_cp=%%f > nul chcp 65001 > nul echo -------------------------------------------------------------------- echo Continue only if you are sure that you have set the correct echo build and commited the changes. echo This command will tag the current state of the repository as: echo %tag% echo -------------------------------------------------------------------- echo If you're not sure press Ctrl+C echo -------------------------------------------------------------------- echo -------------------------------------------------------------------- echo Продолжайте только если вы уверены, что вы выставили правильный echo номер билда и закоммитили изменения. echo Эта команда пометит текущее состояние репозитория как: echo %tag% echo -------------------------------------------------------------------- echo Если вы не уверены, нажмите Ctrl+C echo -------------------------------------------------------------------- chcp %current_cp% > nul pause echo. if exist ..\.git goto git for /f "tokens=3" %%f in ('svn info ^| find "Root:"') do set repo=%%f if [%repo%] == [] goto error set tag_path=%repo%/tags/%tag% svn info %tag_path% > nul 2>&1 & ( if not errorlevel 1 ( echo Error: tag %tag% already exists ) else ( svn copy %repo%/trunk %tag_path% -m "tag build %build%" ) ) goto finish :git git fetch && git tag %tag% origin/master && git push origin %tag% goto finish :error echo "Something went wrong" :finish endlocal
FarGroup/FarManager
far/tag_build.bat
bat
bsd-3-clause
1,830
@echo off setlocal "%~dp0\runclass.bat" -Dnet.shibboleth.idp.cli.arguments=net.shibboleth.idp.cli.ResolverTestArguments net.shibboleth.idp.cli.CLI %*
OpenLiberty/open-liberty
dev/com.ibm.ws.security.saml.sso_fat.common/shibboleth-idp/4.1.0/bin/aacli.bat
bat
epl-1.0
151
@echo off REM Copyright 2021 The Chromium Authors. All rights reserved. REM Use of this source code is governed by a BSD-style license that can be REM found in the LICENSE file. REM Helper batch file to launch windbg, either from a local install or from the REM packaged Chromium toolchain. REM There are windbg32.bat and windbg64.bat flavors of this batch file - keep REM them synchronized when making changes. @setlocal REM Print helpful messages and set win_sdk_dir call %~dp0windbg_common.bat @echo on "%win_sdk_dir%\Debuggers\x86\windbg.exe" %*
nwjs/chromium.src
tools/win/windbg32.bat
bat
bsd-3-clause
555
:: Licensed to the Apache Software Foundation (ASF) under one or more :: contributor license agreements. See the NOTICE file distributed with :: this work for additional information regarding copyright ownership. :: The ASF licenses this file to You under the Apache License, Version 2.0 :: (the "License"); you may not use this file except in compliance with :: the License. You may obtain a copy of the License at :: :: :: http://www.apache.org/licenses/LICENSE-2.0 :: :: Unless required by applicable law or agreed to in writing, software :: distributed under the License is distributed on an "AS IS" BASIS, :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. :: See the License for the specific language governing permissions and :: limitations under the License. if not exist %bin% ( echo Error: Environment variable bin not defined. echo This is generally because this script should not be invoked directly. Use sqoop instead. exit /b 1 ) if not defined SQOOP_HOME ( set SQOOP_HOME=%bin%\.. ) if not defined SQOOP_CONF_DIR ( set SQOOP_CONF_DIR=%SQOOP_HOME%\conf ) :: Call sqoop-env if it exists under SQOOP_CONF_DIR if exist %SQOOP_CONF_DIR%\sqoop-env.cmd ( call %SQOOP_CONF_DIR%\sqoop-env.cmd ) :: Find paths to our dependency systems. If they are unset, use CDH defaults. if not defined HADOOP_COMMON_HOME ( if defined HADOOP_HOME ( set HADOOP_COMMON_HOME=%HADOOP_HOME% ) else ( :: Check: If we can't find our dependencies, give up here. echo Error: The environment variable HADOOP_HOME has not been defined. echo Please set HADOOP_HOME to the root of your Hadoop installation. exit /b 1 ) ) if not defined HADOOP_MAPRED_HOME ( if defined HADOOP_HOME ( set HADOOP_MAPRED_HOME=%HADOOP_HOME% ) else ( :: Check: If we can't find our dependencies, give up here. echo Error: The environment variable HADOOP_HOME has not been defined. echo Please set HADOOP_HOME to the root of your Hadoop installation. exit /b 1 ) ) :: We are setting HADOOP_HOME to HADOOP_COMMON_HOME if it is not set :: so that hcat script works correctly on BigTop if not defined HADOOP_HOME ( if defined HADOOP_COMMON_HOME ( set HADOOP_HOME=%HADOOP_COMMON_HOME% ) ) :: Check for HBase dependency if not defined HBASE_HOME ( if defined HBASE_VERSION ( set HBASE_HOME=%HADOOP_HOME%\..\hbase-%HBASE_VERSION% ) else ( echo Warning: HBASE_HOME and HBASE_VERSION not set. ) ) :: Check for HCatalog dependency if not defined HCAT_HOME ( if defined HCATALOG_HOME ( set HCAT_HOME=%HCATALOG_HOME% ) else ( echo Warning: HCAT_HOME not set ) ) if not exist "%HCATALOG_HOME%" ( echo Warning: HCATALOG_HOME does not exist! HCatalog imports will fail. echo Please set HCATALOG_HOME to the root of your HCatalog installation. ) :: :: Check for Accumulo dependency if not defined ACCUMULO_HOME ( echo Warning: ACCUMULO_HOME not set. ) if not defined ZOOKEEPER_HOME ( echo Warning: ZOOKEEPER_HOME not set. ) :: Check: If we can't find our dependencies, give up here. :: Check: If HADOOP_COMMON_HOME path actually exists if not exist %HADOOP_COMMON_HOME% ( echo Error: HADOOP_COMMON_HOME does not exist! echo Please set HADOOP_COMMON_HOME to the root of your Hadoop installation. exit /b 1 ) :: Check: If HADOOP_MAPRED_HOME path actually exists if not exist %HADOOP_MAPRED_HOME% ( echo Error: HADOOP_MAPRED_HOME does not exist! echo Please set HADOOP_MAPRED_HOME to the root of your Hadoop installation. exit /b 1 ) if not exist "%HBASE_HOME%" ( echo Warning: HBASE_HOME does not exist! HBase imports will fail. echo Please set HBASE_HOME to the root of your HBase installation. ) if not exist "%ACCUMULO_HOME%" ( echo Warning: ACCUMULO_HOME does not exist! Accumulo imports will fail. echo Please set ACCUMULO_HOME to the root of your Accumulo installation. ) if not exist "%ZOOKEEPER_HOME%" ( echo Warning: ZOOKEEPER_HOME does not exist! Accumulo imports will fail. echo Please set ZOOKEEPER_HOME to the root of your Zookeeper installation. ) :: Add sqoop dependencies to classpath set SQOOP_CLASSPATH= :: Where to find the main Sqoop jar set SQOOP_JAR_DIR=%SQOOP_HOME% :: If there's a "build" subdir, override with this, so we use :: the newly-compiled copy. if exist "%SQOOP_JAR_DIR%\build" ( set SQOOP_JAR_DIR=%SQOOP_JAR_DIR%\build ) call :add_dir_to_classpath %SQOOP_JAR_DIR% if exist "%SQOOP_HOME%\lib" ( call :add_dir_to_classpath %SQOOP_HOME%\lib ) :: Add HCatalog Home to the dependency list so that newer thrift libraries are :: used instead of HBase version if exist "%HCATALOG_HOME%" ( if defined PYTHON_CMD ( for /F "usebackq eol==" %%G IN ( `%PYTHON_CMD% %HCAT_HOME%\bin\hcat.py -classpath`) DO SET SQOOP_CLASSPATH=%SQOOP_CLASSPATH%;%%G ) else ( for /f "usebackq eol==" %%G IN ( `python %HCAT_HOME%\bin\hcat.py -classpath`) DO SET SQOOP_CLASSPATH=%SQOOP_CLASSPATH%;%%G ) ) :: Add HBase to dependency list if exist "%HBASE_HOME%" ( call :add_dir_to_classpath %HBASE_HOME% call :add_dir_to_classpath %HBASE_HOME%\lib set SQOOP_CLASSPATH=!SQOOP_CLASSPATH!;%HBASE_HOME%\conf ) :: :: Add Accumulo to dependency list if exist "%ACCUMULO_HOME%" ( call :add_dir_to_classpath %ACCUMULO_HOME% call :add_dir_to_classpath %ACCUMULO_HOME%\lib ) if not defined ZOOCFGDIR ( if defined ZOOKEEPER_CONF_DIR ( set ZOOCFGDIR=%ZOOKEEPER_CONF_DIR% ) else ( if defined ZOOKEEPER_HOME ( set ZOOCFGDIR=%ZOOKEEPER_HOME%\conf )) ) if "%ZOOCFGDIR%" NEQ "" ( set SQOOP_CLASSPATH=!SQOOP_CLASSPATH!;%ZOOCFGDIR% ) call :add_dir_to_classpath %SQOOP_CONF_DIR% :: If there's a build subdir, use Ivy-retrieved dependencies too. if exist "%SQOOP_HOME%\build\ivy\lib\sqoop" ( call :add_dir_to_classpath %SQOOP_HOME%\build\ivy\lib\sqoop ) set HADOOP_CLASSPATH=%SQOOP_CLASSPATH%;%HADOOP_CLASSPATH% if defined SQOOP_USER_CLASSPATH ( :: User has elements to prepend to the classpath, forcibly overriding :: Sqoop's own lib directories. set HADOOP_CLASSPATH=%SQOOP_USER_CLASSPATH%;%HADOOP_CLASSPATH% ) goto :eof :: Function to add the given directory to the list of classpath directories :: All jars under the given directory are added to the classpath :add_dir_to_classpath if not "%1"=="" ( set SQOOP_CLASSPATH=!SQOOP_CLASSPATH!;%1\* ) goto :eof
balazsbotond/sqoop-deb-package
sqoop_1.4.6-1/usr/lib/sqoop/bin/configure-sqoop.cmd
bat
apache-2.0
6,329
"%~dp0src\Build.cmd"
TedDBarr/orleans
Build.cmd
bat
mit
21
SET target=%1 IF "%target%"=="" SET target=Build ClickToBuild %target% AzurePackage.proj
mgrowan/Orchard
ClickToBuildAzurePackage.cmd
bat
bsd-3-clause
92
@echo off TITLE TeamCityTheatre -- Publish rmdir /S /Q "./publish-output" & dotnet restore "./src/TeamCityTheatre.sln" && dotnet clean "./src/TeamCityTheatre.sln" --configuration Release --verbosity normal && cd "./src/TeamCityTheatre.Web" && npm ci && npm run build:release && cd .. && cd .. && dotnet publish "./src/TeamCityTheatre.Web/TeamCityTheatre.Web.csproj" --configuration Release --verbosity normal --output "./../../publish-output"
amoerie/teamcity-theatre
publish.cmd
bat
mit
442
@echo off setlocal call "%%~dp0__init__\__init__.bat" || exit /b start "" /WAIT "%CALLFG_EXE_PATH%" /elevate /promote{ /attach-parent-console } "" "\"${COMSPEC}\" /c echo.\"{0} {1}\"" "1 2" "3 4" pause
andry81/contools
Utilities/tests/manual/contools/callf/03-test--02-elevate--03-existing_console.bat
bat
mit
215
javac View.java javac AutoCompleteTextField.java javac DefTextArea.java java View
alvisgage/Java-Projects
AutoCompleteText/build.bat
bat
mit
81
@ECHO OFF pushd %~dp0 REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=python -msphinx ) set SOURCEDIR=source set BUILDDIR=build set SPHINXPROJ=lookit-api if "%1" == "" goto help %SPHINXBUILD% >NUL 2>NUL if errorlevel 9009 ( echo. echo.The Sphinx module was not found. Make sure you have Sphinx installed, echo.then set the SPHINXBUILD environment variable to point to the full echo.path of the 'sphinx-build' executable. Alternatively you may add the echo.Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% goto end :help %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% :end popd
pattisdr/lookit-api
docs/make.bat
bat
mit
812
@echo off set ANT_OPTS=-Xmx200m -Dfile.encoding=UTF-8 echo Setting ant opts to: %ANT_OPTS% ant -version
exedio/mxsampler
setantenv.bat
bat
mit
104
@echo off set rt= set rtver= set osver= for /f "usebackq" %%I in (` dumpbin -dependents %1 ^| findstr -r -i -c:"\<vcruntime.*\.dll$" -c:"\<msvcr.*\.dll$" `) do ( set rt=%%~nI ) for %%i in (a b c d e f g h i j k l m n o p q r s t u v w x y z) do @( ::- downcase call set rt=%%rt:%%i=%%i%% ) if "%rt%" == "msvcrt" ( call set rtver=60 ) else if "%rt:~0,5%" == "msvcr" ( call set rtver=%%rt:msvcr=%% call set osver=_%%rtver%% ) else if "%rt:~0,9%" == "vcruntime" ( call set rtver=%%rt:vcruntime=%% call set osver=_%%rtver%% ) else ( (echo %0: %1 is not linked to msvcrt nor vcruntime) 1>&2 exit 1 ) for %%I in ( "PLATFORM = $(TARGET_OS)%osver%" "RT = %rt%" "RT_VER = %rtver%" ) do @( echo %%~I )
pmq20/ruby-compiler
ruby/win32/rtname.cmd
bat
mit
758
@echo. @echo babel components-src -d components --presets react,es2015 @babel components-src -d components --presets react,es2015
VictorKoenders/react-utils
build.bat
bat
mit
129
ring gendoc.ring copy ringopengl45funcsdoc.txt ..\..\..\docs\source\
ring-lang/ring
extensions/ringopengl/opengl45/document.bat
bat
mit
68
@call dotnet --info @call dotnet restore -v m ../ @if ERRORLEVEL 1 ( echo Error! Restoring dependencies failed. exit /b 1 ) else ( echo Restoring dependencies was successful. ) @set project=..\src\Flurl.Http.CodeGen\Flurl.Http.CodeGen.csproj @call dotnet run -c Release -p %project% ..\src\Flurl.Http\GeneratedExtensions.cs @if ERRORLEVEL 1 ( echo Error! Generation cs file failed. exit /b 1 ) @set project=..\src\Flurl\ @call dotnet build -c Release %project% @if ERRORLEVEL 1 ( echo Error! Build Flurl failed. exit /b 1 ) @set project=..\src\Flurl.Http\ @call dotnet build -c Release %project% @if ERRORLEVEL 1 ( echo Error! Build Flurl.Http failed. exit /b 1 )
johnmbaughman/Flurl
Build/build.cmd
bat
mit
673
cd /d %~dp0 set p=%VS110COMNTOOLS% path %p:~0,-6%IDE\; devenv /build Release .\Dongbo.Framework.sln pause
gavin-hao/framework_aspnet
src/build.bat
bat
mit
109
@echo off rem Add path to Visual Studio 2019 Tools if exist "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Enterprise\Common7\Tools" set PATH=%PATH%;%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Enterprise\Common7\Tools if exist "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Professional\Common7\Tools" set PATH=%PATH%;%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Professional\Common7\Tools if exist "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Community\Common7\Tools" set PATH=%PATH%;%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Community\Common7\Tools if exist "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Preview\Common7\Tools" set PATH=%PATH%;%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Preview\Common7\Tools rem Set up Developer Command Prompt call VsDevCmd.bat rem Use local NuGet version set PATH=%cd%\tools\nuget;%PATH%
github/VisualStudio
vars.cmd
bat
mit
865
@ECHO OFF hosts.lnk
thinkingmedia/dos
hosts.cmd
bat
mit
19
gcc -std=c99 -O3 -c emulator\*.c gcc -shared -o _emulator.dll *.o del *.o
fogleman/DCPU-16
build_emulator.bat
bat
mit
74
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled echo. coverage to run coverage check of the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) REM Check if sphinx-build is available and fallback to Python version if any %SPHINXBUILD% 2> nul if errorlevel 9009 goto sphinx_python goto sphinx_ok :sphinx_python set SPHINXBUILD=python -m sphinx.__init__ %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) :sphinx_ok if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\MicrobialEcologyProtocols.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\MicrobialEcologyProtocols.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %~dp0 echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "coverage" ( %SPHINXBUILD% -b coverage %ALLSPHINXOPTS% %BUILDDIR%/coverage if errorlevel 1 exit /b 1 echo. echo.Testing of coverage in the sources finished, look at the ^ results in %BUILDDIR%/coverage/python.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) :end
jiarong/protocols
make.bat
bat
cc0-1.0
7,282
@rem *************************************************************************** @rem Debrief - the Open Source Maritime Analysis Application @rem http://debrief.info @rem @rem (C) 2000-2020, Deep Blue C Technology Ltd @rem @rem This library is free software; you can redistribute it and/or @rem modify it under the terms of the Eclipse Public License v1.0 @rem (http://www.eclipse.org/legal/epl-v10.html) @rem @rem This library is distributed in the hope that it will be useful, @rem but WITHOUT ANY WARRANTY; without even the implied warranty of @rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. @rem *************************************************************************** d:\java\apache-ant-1.6.1-bin\apache-ant-1.6.1\bin\ant -DsrcDir=f:\
debrief/debrief
deploy/from_cd.bat
bat
epl-1.0
760
%1 cd %2 jar xvf %3 %4 %5 %6 %7 %8 %9
GazeboHub/ghub-portal-doc
doc/modelio/GHub Portal/mda/JavaDesigner/bin/unjar.bat
bat
epl-1.0
39
cmd_net/netfilter/netfilter.o := /home/lithium/CodeSourcery/Sourcery_G++_Lite/bin/arm-none-linux-gnueabi-ld -EL -r -o net/netfilter/netfilter.o net/netfilter/core.o net/netfilter/nf_log.o net/netfilter/nf_queue.o net/netfilter/nf_sockopt.o
0xD34D/kernel_amazon_tate
net/netfilter/.netfilter.o.cmd
bat
gpl-2.0
244
@echo off cd .. @rem Prepare env mkdir build\bin\Win32\Release call "%VS100COMNTOOLS%\vsvars32.bat" @rem Build OpenSSL cd srclib\OpenSSL set PATH=c:\perl\bin;d:\dev\nasm;%PATH% perl Configure VC-WIN32 --prefix=.\bin call ms\do_nasm.bat nmake -f ms\ntdll.mak copy /y /b out32dll\ssleay32.lib ..\..\build\bin\Win32\Release\ copy /y /b out32dll\libeay32.lib ..\..\build\bin\Win32\Release\ copy /y /b out32dll\ssleay32.dll ..\..\build\bin\Win32\Release\ copy /y /b out32dll\libeay32.dll ..\..\build\bin\Win32\Release\ copy /y /b out32dll\ssleay32.pdb ..\..\build\bin\Win32\Release\ copy /y /b out32dll\libeay32.pdb ..\..\build\bin\Win32\Release\ cd ../.. @rem Building other libraries msbuild.exe /maxcpucount:2 /target:build /property:Configuration=Release,Platform=Win32 /fileLogger1 emule_3rdparty.sln pause
gureedo/eMule-IS-Mod
scripts/make_libs_release.bat
bat
gpl-2.0
810
cmd_kernel/irq/built-in.o := /home/darkspr1te/Desktop/Android/cm11/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o kernel/irq/built-in.o kernel/irq/irqdesc.o kernel/irq/handle.o kernel/irq/manage.o kernel/irq/spurious.o kernel/irq/resend.o kernel/irq/chip.o kernel/irq/dummychip.o kernel/irq/devres.o kernel/irq/autoprobe.o kernel/irq/irqdomain.o kernel/irq/proc.o kernel/irq/pm.o
darkspr1te/android_kernel_samsung_msm8916_a5
out/kernel/irq/.built-in.o.cmd
bat
gpl-2.0
408
taskkill /IM serialport.exe /F :check_net if [%2]==[] goto check_process set ping_host=%2 echo Check network status > COM1 ping %ping_host% if errorlevel 1 goto check_net :check_process if [%1]==[] goto end set process=%1 echo Check %process% status > COM1 tasklist /FO List> C:\log type C:\log|find "%process%" if errorlevel 1 goto end if errorlevel 0 goto check_process :end reg add "HKLM\System\CurrentControlSet\Control\CrashControl" /v AutoReboot /d 0 /t REG_DWORD /f reg add "HKLM\System\CurrentControlSet\Control\CrashControl" /v CrashDumpEnabled /d 2 /t REG_DWORD /f reg add "HKLM\System\CurrentControlSet\Control\CrashControl" /v NMICrashDump /d 1 /t REG_DWORD /f reg add "HKLM\System\CurrentControlSet\Control\CrashControl" /v DumpFile /d %SystemRoot%\Memory.dmp /t REG_EXPAND_SZ /f reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Run" /v bsod /d "D:\autoit3.exe D:\dump_control.au3" /t REG_SZ /f reg add "HKLM\System\CurrentControlSet\Control\CrashControl" /v AlwaysKeepMemoryDump /d 1 /t REG_DWORD /f reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\Windows Error Reporting" /v Disabled /d 1 /t REG_DWORD /f reg add "HKLM\SYSTEM\CurrentControlSet\Services\vds" /v Start /t REG_DWORD /d 3 /f for /L %%i in (1,1,3) do (echo Post set up finished> COM1)
lmr/avocado-vt
shared/deps/finish/finish.bat
bat
gpl-2.0
1,286
cmd_drivers/mtd/onenand/built-in.o := rm -f drivers/mtd/onenand/built-in.o; /opt/toolchains/arm-2009q3/bin/arm-none-eabi-ar rcs drivers/mtd/onenand/built-in.o
dizgustipated/BOCA-2.6.35.14
drivers/mtd/onenand/.built-in.o.cmd
bat
gpl-2.0
160
cmd_arch/arm/lib/memset.o := /home/percy/sgy/arm-2009q3/bin/arm-none-eabi-gcc -Wp,-MD,arch/arm/lib/.memset.o.d -nostdinc -isystem /home/percy/sgy/arm-2009q3/bin/../lib/gcc/arm-none-eabi/4.4.1/include -I/home/percy/sgy/kernel/common/arch/arm/include -Iinclude -I../modules/include -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-bcm215xx/include -Iarch/arm/plat-bcmap/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=6 -march=armv6k -mtune=arm1136j-s -include asm/unified.h -msoft-float -gdwarf-2 -c -o arch/arm/lib/memset.o arch/arm/lib/memset.S deps_arch/arm/lib/memset.o := \ arch/arm/lib/memset.S \ /home/percy/sgy/kernel/common/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ $(wildcard include/config/thumb2/kernel.h) \ include/linux/linkage.h \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ /home/percy/sgy/kernel/common/arch/arm/include/asm/linkage.h \ /home/percy/sgy/kernel/common/arch/arm/include/asm/assembler.h \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/smp.h) \ /home/percy/sgy/kernel/common/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/percy/sgy/kernel/common/arch/arm/include/asm/hwcap.h \ arch/arm/lib/memset.o: $(deps_arch/arm/lib/memset.o) $(deps_arch/arm/lib/memset.o):
percy215/common
arch/arm/lib/.memset.o.cmd
bat
gpl-2.0
1,723
cmd_fs/debugfs/built-in.o := /home/spacecaker/CodeSourcery/Sourcery_CodeBench_Lite_for_ARM_EABI/bin/arm-none-eabi-ld -EL -r -o fs/debugfs/built-in.o fs/debugfs/debugfs.o
spacecaker/Stock_spacecaker_kernel
fs/debugfs/.built-in.o.cmd
bat
gpl-2.0
175
cmd_arch/arm/boot/compressed/lib1funcs.o := /home/percy/sgy/arm-2009q3/bin/arm-none-eabi-gcc -Wp,-MD,arch/arm/boot/compressed/.lib1funcs.o.d -nostdinc -isystem /home/percy/sgy/arm-2009q3/bin/../lib/gcc/arm-none-eabi/4.4.1/include -I/home/percy/sgy/kernel/common/arch/arm/include -Iinclude -I../modules/include -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-bcm215xx/include -Iarch/arm/plat-bcmap/include -D__ASSEMBLY__ -mabi=aapcs-linux -mno-thumb-interwork -funwind-tables -D__LINUX_ARM_ARCH__=6 -march=armv6k -mtune=arm1136j-s -include asm/unified.h -msoft-float -gdwarf-2 -Wa,-march=all -c -o arch/arm/boot/compressed/lib1funcs.o arch/arm/boot/compressed/lib1funcs.S deps_arch/arm/boot/compressed/lib1funcs.o := \ arch/arm/boot/compressed/lib1funcs.S \ $(wildcard include/config/aeabi.h) \ /home/percy/sgy/kernel/common/arch/arm/include/asm/unified.h \ $(wildcard include/config/arm/asm/unified.h) \ $(wildcard include/config/thumb2/kernel.h) \ include/linux/linkage.h \ include/linux/compiler.h \ $(wildcard include/config/trace/branch/profiling.h) \ $(wildcard include/config/profile/all/branches.h) \ $(wildcard include/config/enable/must/check.h) \ $(wildcard include/config/enable/warn/deprecated.h) \ /home/percy/sgy/kernel/common/arch/arm/include/asm/linkage.h \ /home/percy/sgy/kernel/common/arch/arm/include/asm/assembler.h \ $(wildcard include/config/cpu/feroceon.h) \ $(wildcard include/config/trace/irqflags.h) \ $(wildcard include/config/smp.h) \ /home/percy/sgy/kernel/common/arch/arm/include/asm/ptrace.h \ $(wildcard include/config/cpu/endian/be8.h) \ $(wildcard include/config/arm/thumb.h) \ /home/percy/sgy/kernel/common/arch/arm/include/asm/hwcap.h \ arch/arm/boot/compressed/lib1funcs.o: $(deps_arch/arm/boot/compressed/lib1funcs.o) $(deps_arch/arm/boot/compressed/lib1funcs.o):
percy215/common
arch/arm/boot/compressed/.lib1funcs.o.cmd
bat
gpl-2.0
1,914
"$RTERM$" --no-restore --file=full_model.r --save > r_output.txt 2>&1
jmarshallnz/epiclustR
run_R.bat
bat
gpl-2.0
70
cmd_drivers/char/built-in.o := mips-openwrt-linux-uclibc-ld -m elf32btsmip -r -o drivers/char/built-in.o drivers/char/mem.o drivers/char/random.o drivers/char/misc.o
shizhai/wprobe
build_dir/target-mips_r2_uClibc-0.9.33.2/linux-ar71xx_generic/linux-3.10.4/drivers/char/.built-in.o.cmd
bat
gpl-2.0
171
cmd_drivers/pci/pcie/pcieportdrv.o := ld -m elf_i386 -r -o drivers/pci/pcie/pcieportdrv.o drivers/pci/pcie/portdrv_core.o drivers/pci/pcie/portdrv_pci.o drivers/pci/pcie/portdrv_bus.o
namgk/kernel-tut
drivers/pci/pcie/.pcieportdrv.o.cmd
bat
gpl-2.0
187
@echo off rem Ensure this Node.js and npm are first in the PATH set PATH=%APPDATA%\npm;%~dp0;%PATH% setlocal enabledelayedexpansion pushd "%~dp0" rem Figure out the node version. set print_version=.\node.exe -p -e "process.versions.node + ' (' + process.arch + ')'" for /F "usebackq delims=" %%v in (`%print_version%`) do set version=%%v rem Print message. if exist npm.cmd ( echo Your environment has been set up for using Node.js !version! and npm. ) else ( echo Your environment has been set up for using Node.js !version!. ) popd endlocal call karma start karma.conf.debug.js
MikeHanson/angular-cookie-service
StartKarmaDebug.cmd
bat
gpl-2.0
589
cpprsf2tsmell.sh AssertNoMessageALot.rsf -DASSERTION_ROULETTE -DASSERTION_ROULETTE_TRESHOLD=6
carvalhomb/tsmells
tests/Pieces/AssertionRoulette/cpp/AssertNoMessageALot/AssertNoMessageALot.cmd
bat
gpl-2.0
95
@echo off REM REM Copyright 2010-2015 by David A. Parker <[email protected]> REM REM This file is part of CheckValve, an HLDS/SRCDS query app for Android. REM REM CheckValve is free software: you can redistribute it and/or modify REM it under the terms of the GNU General Public License as published by REM the Free Software Foundation. REM REM CheckValve is distributed in the hope that it will be useful, REM but WITHOUT ANY WARRANTY; without even the implied warranty of REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the REM GNU General Public License for more details. REM REM You should have received a copy of the GNU General Public License REM along with the CheckValve source code. If not, see REM <http://www.gnu.org/licenses/>. REM REM REM PROGRAM: REM startup.bat REM REM DESCRIPTION: REM Start the CheckValve Console Relay in the background REM REM AUTHOR: REM Dave Parker REM REM DATE: REM July 25, 2015 REM REM --- Default configuration file set DEF_CONFIG_FILE=..\checkvalveconsolerelay.properties set CONFIG_FILE=%DEF_CONFIG_FILE% REM --- Default debugging options set DEF_DEBUG_HOST=localhost set DEF_DEBUG_PORT=1044 set DEBUG=0 set DEBUG_HOST=%DEF_DEBUG_HOST% set DEBUG_PORT=%DEF_DEBUG_PORT% REM --- Default minimum heap size for CheckValve Console Relay set DEF_JVM_MIN_MEM=8m set JVM_MIN_MEM=%DEF_JVM_MIN_MEM% REM --- Default maximum heap size for CheckValve Console Relay set DEF_JVM_MAX_MEM=16m set JVM_MAX_MEM=%DEF_JVM_MAX_MEM% REM --- Check for command line options :check_opts if "%1"=="" goto check_lib_dir if "%1"=="--help" goto usage if "%1"=="--config" ( if "%2"=="" ( echo. echo ERROR: The option --config requires a value. goto usage ) else ( set CONFIG_FILE=%2 shift shift goto check_opts ) ) if "%1"=="--debug" ( set DEBUG=1 shift goto check_opts ) if "%1"=="--debughost" ( if "%2"=="" ( echo. echo ERROR: The option --debughost requires a value. goto usage ) else ( set DEBUG_HOST=%2 shift shift goto check_opts ) ) if "%1"=="--debugport" ( if "%2"=="" ( echo. echo ERROR: The option --debugport requires a value. goto usage ) else ( set DEBUG_PORT=%2 shift shift goto check_opts ) ) if "%1"=="--minheap" ( if "%2"=="" ( echo. echo ERROR: The option --minheap requires a value. goto usage ) else ( set JVM_MIN_MEM=%2 shift shift goto check_opts ) ) if "%1"=="--maxheap" ( if "%2"=="" ( echo. echo ERROR: The option --maxheap requires a value. goto usage ) else ( set JVM_MAX_MEM=%2 shift shift goto check_opts ) ) echo. echo ERROR: Invalid option %1 goto usage REM --- Make sure the directory ..\lib exists :check_lib_dir if not exist ..\lib ( goto no_lib_dir ) else ( goto check_bundled_java ) REM --- Check for a bundled JRE :check_bundled_java if exist ..\jre\bin\javaw.exe ( set JAVA_BIN=..\jre\bin\javaw.exe goto check_if_running ) else ( goto check_system_java ) REM --- Check for Java in the system PATH :check_system_java javaw.exe -version >NUL 2>NUL if errorlevel 1 ( goto no_java ) if errorlevel 0 ( set JAVA_BIN=javaw.exe goto check_if_running ) REM --- Display and error and exit if ..\lib does not exist :no_lib_dir echo. echo ERROR: Could not find the 'lib' directory in the parent folder. echo. echo Please ensure that this script is being executed from the echo <install_dir>\bin folder, where <install_dir> is the base echo installation folder of the CheckValve Console Relay. echo. goto exit REM --- Display an error and exit if Java could not be found :no_java echo. echo ERROR: Unable to locate the 'java' executable. echo. echo Please ensure the Java Runtime Environment (JRE) is installed echo and the 'java' executable can be found in your PATH. echo. goto exit REM --- Check to see if the Console Relay is already running :check_if_running cd ..\lib %JAVA_BIN% -jar consolerelayctl.jar --config %CONFIG_FILE% status >NUL 2>NUL set retval=%ERRORLEVEL% cd ..\bin if %retval% equ 1 ( goto run_program ) else ( goto is_running ) REM --- Run consolerelayctl to start the Console Relay :run_program cd ..\lib if %DEBUG% equ 1 ( set DEBUG_OPTS=--debug --debughost %DEBUG_HOST% --debugport %DEBUG_PORT% start /b %JAVA_BIN% -jar consolerelayctl.jar --config %CONFIG_FILE% --minheap %JVM_MIN_MEM% --maxheap %JVM_MAX_MEM% %DEBUG_OPTS% start echo Started CheckValve Console Relay. echo ^(Debugging mode is enabled, connect jdb to %DEBUG_HOST%:%DEBUG_PORT% for debugging.^) ) else ( start /b %JAVA_BIN% -jar consolerelayctl.jar --config %CONFIG_FILE% --minheap %JVM_MIN_MEM% --maxheap %JVM_MAX_MEM% start echo Started CheckValve Console Relay. ) cd ..\bin goto exit REM --- Display an error and exit if the Console Relay is already running :is_running echo. echo CheckValve Console Relay is already running. echo. goto exit REM --- Show usage information :usage echo. echo Usage: %0 echo [--config ^<file^>] [--minheap ^<size^>] [--maxheap ^<size^>] echo [--debug [--debughost ^<ip^>] [--debugport ^<port^>]] echo [--help] echo. echo Command-line options: echo. echo --config ^<file^> Read config from ^<file^> echo [default = %DEF_CONFIG_FILE%] echo. echo --minheap ^<size^> Set the JVM's minimum heap size to ^<size^> echo [default = %DEF_JVM_MIN_MEM%] echo. echo --maxheap ^<size^> Set the JVM's maximum heap size to ^<size^> echo [default = %DEF_JVM_MAX_MEM%] echo. echo --debug Enable the Java debugging listener (for use with jdb) echo. echo --debughost ^<ip^> IP for jdb connections if debugging is enabled echo [default = %DEF_DEBUG_HOST%] echo. echo --debugport ^<port^> Port for jdb connections if debugging is enabled echo [default = %DEF_DEBUG_PORT%] echo. echo --help Show this help text and exit echo. echo Note: For --minheap and --maxheap, the ^<size^> value should be a number echo followed by "k" for kilobytes, "m" for megabytes, or "g" for echo gigabytes. (Ex: 1048576k, 1024m, 1g). echo. goto exit :exit pause
daparker/checkvalve-console-relay
bin/startup.bat
bat
gpl-3.0
6,702
cl ysmfile.cpp d88.cpp
rururutan/hoot-patches
msx/falcom/ys/cut/comp.bat
bat
gpl-3.0
23
REM============================================================================ REM REM Copyright Saab AB, 2008-2013 (http://safirsdkcore.com) REM REM Created by: Saab AB REM REM Purpose: Run database script using BSQL. REM Note that the Mimer database 'SafirDb' must exist and run REM before this script is executed. REM REM============================================================================ REM username: sysadm password: sysadm script: install_vehicledb.sql database: SafirDb (echo sysadm & echo sysadm & echo read 'install_vehicledb.sql'; & echo exit;) | "c:\Program Files\Mimer SQL 9.2\BSQL.exe" SafirDb echo "Done..." pause :EOF
SafirSDK/safir-sdk-core
examples/vehicledb/data/SQL/install_vehicledb_on_mimer.bat
bat
gpl-3.0
670
@rem Open "Visual Studio .NET Command Prompt" to run this script @setlocal @cd %~dp0 @rem PLAT: x64, Win32 @set PLAT=%1 @if "%PLAT%"=="" @set PLAT=x64 @rem CONFIG: win7, win10 @set CONFIG=%2 @if "%CONFIG%"=="" @set CONFIG=win10 @rem ARCH: x86, arm64 @set ARCH=%3 @if "%ARCH%"=="" @set ARCH=x86 @set OutDir=..\..\build-driver-%CONFIG%\%PLAT% @set IntDir=%OutDir%-obj MSBuild fortdrv.vcxproj /p:OutDir=%OutDir%\;IntDir=%IntDir%\;Platform=%PLAT%;Config=%CONFIG%;Arch=%ARCH% @rem DumpBin /SYMBOLS "%IntDir%\fortdrv.obj" > symbols.txt @rd /S /Q "%IntDir%" @rd /S /Q "%OutDir%\fortdrv" @del /Q "%OutDir%\fortfw*.cer"
tnodir/fort
src/driver/msvcbuild.bat
bat
gpl-3.0
621
@echo off ls /ad %*
pip/Octology
dox/Jobz/7Studios/CygPip/bin/lsd.bat
bat
gpl-3.0
22
@echo off REM ************************************************** REM ** Set console window properties ** REM ************************************************** REM TITLE Chef console REM COLOR F0 REM ************************************************** REM ** Make sure we use the correct J2SE version! ** REM ** Uncomment the PATH line in case of trouble ** REM ************************************************** REM set PATH=C:\j2sdk1.4.2_01\bin;.;%PATH% REM ************************************************** REM ** Libraries used by Kettle: ** REM ************************************************** set CLASSPATH=. REM ****************** REM KETTLE Library REM ****************** set CLASSPATH=%CLASSPATH%;lib\kettle.jar REM ********************** REM External Libraries REM ********************** REM Loop the libext directory and add the classpath. REM The following command would only add the last jar: FOR %%F IN (libext\*.jar) DO call set CLASSPATH=%CLASSPATH%;%%F REM So the circumvention with a subroutine solves this ;-) FOR %%F IN (libext\*.jar) DO call :addcp %%F FOR %%F IN (libext\JDBC\*.jar) DO call :addcp %%F FOR %%F IN (libext\webservices\*.jar) DO call :addcp %%F FOR %%F IN (libext\commons\*.jar) DO call :addcp %%F FOR %%F IN (libext\web\*.jar) DO call :addcp %%F FOR %%F IN (libext\pentaho\*.jar) DO call :addcp %%F goto extlibe :addcp set CLASSPATH=%CLASSPATH%;%1 goto :eof :extlibe REM ***************** REM SWT Libraries REM ***************** set CLASSPATH=%CLASSPATH%;libswt\runtime.jar set CLASSPATH=%CLASSPATH%;libswt\jface.jar set CLASSPATH=%CLASSPATH%;libswt\win32\swt.jar REM ****************************************************************** REM ** Set java runtime options ** REM ** Change 512m to higher values in case you run out of memory. ** REM ****************************************************************** set OPT=-Xmx512m -cp %CLASSPATH% -Djava.library.path=libswt\win32\ -DKETTLE_HOME="%KETTLE_HOME%" -DKETTLE_REPOSITORY="%KETTLE_REPOSITORY%" -DKETTLE_USER="%KETTLE_USER%" -DKETTLE_PASSWORD="%KETTLE_PASSWORD%" REM *************** REM ** Run... ** REM *************** java %OPT% be.ibridge.kettle.kitchen.Kitchen %1 %2 %3 %4 %5 %6 %7 %8 %9
ontometrics/ontokettle
bin/Kitchen.bat
bat
lgpl-2.1
2,363
@echo off set ADA_INCLUDE_PATH=%ADA_INCLUDE_PATH%;%RADALIB_ROOT%\source set ADA_OBJECTS_PATH=%ADA_OBJECTS_PATH%;%RADALIB_ROOT%\compiled gnatmake -O2 Matrix_To_List.adb del /q *.ali del /q *.o echo ----------- Matrix_To_List.exe test-matrix_toy_01.txt test-matrix_toy_01-list.txt 0 Matrix_To_List.exe test-matrix_toy_02.txt test-matrix_toy_02-list.txt 0.00 Matrix_To_List.exe test-matrix_toy_03.txt test-matrix_toy_03-list.txt N/A echo ----------- del Matrix_To_List.exe pause
sergio-gomez/Radalib
tools/Matrix_To_List.bat
bat
lgpl-2.1
485
@ECHO OFF pushd %~dp0 REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set SOURCEDIR=source set SPHINXOPTS=-Dbreathe_projects.dlpack=../doxygen/xml -WT --keep-going set BUILDDIR=build/latest if "%1" == "" goto help %SPHINXBUILD% >NUL 2>NUL if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.https://www.sphinx-doc.org/ exit /b 1 ) %SPHINXBUILD% -b %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% goto end :help %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% :end popd
dmlc/dlpack
docs/make.bat
bat
apache-2.0
885
@echo off rem rem List commands previously typed rem doskey /history
tschutter/AppData
bin/history.bat
bat
bsd-2-clause
70
@echo off mkdir tmp echo Downloading RTLSDR Driver httpget http://sdr.osmocom.org/trac/raw-attachment/wiki/rtl-sdr/RelWithDebInfo.zip tmp\RelWithDebInfo.zip echo Downloading Zadig set zadig_exe=zadig.exe ver | findstr /l "5.1." > NUL if %errorlevel% equ 0 set zadig_exe=zadig_xp.exe httpget http://zadig.akeo.ie/downloads/%zadig_exe% %zadig_exe% unzip -o tmp\RelWithDebInfo.zip -d tmp move tmp\rtl-sdr-release\x32\rtlsdr.dll . rmdir tmp /S /Q
mwickert/SP-Comm-Tutorial-using-scikit-dsp-comm
hardware_configure/Windows_drivers/SDR#/install-rtlsdr.bat
bat
bsd-2-clause
463
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% source set I18NSPHINXOPTS=%SPHINXOPTS% source if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\fp.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\fp.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) :end
ericmoritz/fp
docs/make.bat
bat
bsd-2-clause
5,097
:: ----------------------------------------------------------------------- :: <copyright file="NuGetPack.cmd" company="YamNet"> :: Copyright (c) 2014 YamNet contributors :: </copyright> :: ----------------------------------------------------------------------- @ECHO OFF :: Accept command-line arguments: :: * [-n] : Package Name :: * [-v] : Version Number :: * [-p] : Pause console after execution :: Example: NuGetPack -n YamNet.Client -v 1.0.0.0 -p :VarInit ----------------------------------------------------------------- :: Set the variables SET PackageName= SET VersionNo= SET CurrentDir=%~dp0 SET WorkingDir= SET NuGetDir=.nuget SET OutputDir=nuget :: Could currently be in .nuget directory IF EXIST "%CD%\NuGet.exe" ( CD .. GOTO :ArgsLoop ) :: Could currently be in nuget or src directory IF EXIST "%CD%\..\.nuget\NuGet.exe" ( CD .. GOTO :ArgsLoop ) :: Could currently be in project directory IF EXIST "%CD%\..\..\.nuget\NuGet.exe" ( CD ..\.. GOTO :ArgsLoop ) :: Cannot find NuGet.exe ECHO Error, unable to find NuGet.exe GOTO :IsPause :ArgsLoop ---------------------------------------------------------------- IF NOT "%1"=="" ( IF "%1"=="-n" ( SET PackageName=%2 SHIFT ) IF "%1"=="-v" ( SET VersionNo=%2 SHIFT ) IF "%1"=="-p" ( SET Pause="TRUE" ) SHIFT GOTO :ArgsLoop ) GOTO :Title :Title ------------------------------------------------------------------- ECHO ---------------------------------------- ECHO NuGet Pack ECHO ---------------------------------------- IF NOT [%PackageName%]==[] ( ECHO Package Name : %PackageName% ) ECHO Version Number : %VersionNo% ECHO NuGet Directory : %NuGetDir% ECHO Output Directory: %OutputDir% ECHO. GOTO :PackMain :PackMain ---------------------------------------------------------------- SET "Packages=YamNet.Client" :: Throw alert if Version Number is not defined. :: Otherwise pack a project if defined, or all project if not. IF NOT [%VersionNo%]==[] ( IF NOT [%PackageName%]==[] ( :: Pack specific DLL CALL :PackLoop %PackageName% %VersionNo% ) ELSE ( :: Pack all the DLLs FOR %%G IN (%Packages%) DO ( CALL :PackLoop %%G %VersionNo% ) ) ECHO DLLs have been packaged. ) ELSE ( ECHO Package Version "-v" value is required. ) GOTO :IsPause :PackLoop ---------------------------------------------------------------- :: Pack the DLL(s) SET _PackageName=%1 SET _VersionNo=%2 :: Create output directory if it doesn't exist, otherwise NuGet will throw an error IF NOT EXIST "%OutputDir%\%_PackageName%" MKDIR "%OutputDir%\%_PackageName%" :: Package it! CALL "%NuGetDir%\NuGet.exe" pack "%OutputDir%\%_PackageName%.nuspec" -OutputDirectory "%OutputDir%\%_PackageName%" -Version %_VersionNo% ECHO. GOTO :EOF :IsPause ----------------------------------------------------------------- :: Pause console if requested. IF [%Pause%] == "TRUE" ( PAUSE ) GOTO :BatchEnd :BatchEnd ---------------------------------------------------------------- :: Make sure we return to the original directory CD %CurrentDir%
hhandoko/yam-dotnet
nuget/NuGetPack.cmd
bat
bsd-3-clause
3,158
@echo off REM ############################################################################################################################ REM # (c) 2015 Cisco and/or its affiliates. All rights reserved. REM # REM # This software is released under the Eclipse Public License. The details can be found in the file LICENSE. REM # Any dependent libraries supplied by third parties are provided under their own open source licenses as REM # described in their own LICENSE files, generally named .LICENSE.txt. The libraries supplied by Cisco as REM # part of the Composite Information Server/Cisco Data Virtualization Server, particularly csadmin-XXXX.jar, REM # csarchive-XXXX.jar, csbase-XXXX.jar, csclient-XXXX.jar, cscommon-XXXX.jar, csext-XXXX.jar, csjdbc-XXXX.jar, REM # csserverutil-XXXX.jar, csserver-XXXX.jar, cswebapi-XXXX.jar, and customproc-XXXX.jar (where -XXXX is an REM # optional version number) are provided as a convenience, but are covered under the licensing for the REM # Composite Information Server/Cisco Data Virtualization Server. They cannot be used in any way except REM # through a valid license for that product. REM # REM # This software is released AS-IS!. Support for this software is not covered by standard maintenance agreements with Cisco. REM # Any support for this software by Cisco would be covered by paid consulting agreements, and would be billable work. REM # REM ############################################################################################################################ REM # --------------------- REM # SETUP INSTRUCTIONS: REM # --------------------- REM # 1. Modify the default variables to satisfy the PDTool setup requirements for your organization and environment. REM # REM # 2. Variable Usage: REM # a. Variables with a single % are variables from the command window environment that gets resolved immediately or REM # variables within this setup batch file that the person insalling wants to use. REM # Example 1: %USERNAME% is an example of a variable set in by the command window automaticaly. REM # set DEF_PDTOOL_DESTINATION_HOME=C:\Users\%USERNAME%\.compositesw\PDTool7.0.0_SVN REM # Example 2: %DEF_VCS_WORKSPACE_NAME%t is used to construct the temporary workspace name from the workspace name REM # set DEF_VCS_TEMP_DIR=%%%%PDTOOL_SUBSTITUTE_DRIVE%%%%\%DEF_VCS_WORKSPACE_NAME%t REM # REM # b. Escaping variables for use within the target batch file setMyPrePDToolVars.bat REM # Use 4 percent signs on either side of the target variable so that it resolves correctly and results in the actual variable name REM # being replaced into the target setMyPrePDToolVars.bat file as: %PDTOOL_SUBSTITUTE_DRIVE% REM # Example 3: %%%%PDTOOL_SUBSTITUTE_DRIVE%%%% - resolves to %PDTOOL_SUBSTITUTE_DRIVE% REM # set DEF_VCS_TEMP_DIR=%%%%PDTOOL_SUBSTITUTE_DRIVE%%%%\%%DEF_VCS_WORKSPACE_NAME%%t REM # REM # 3. PDTool setup installation includes: REM # a. Person installing reads and accepts license. REM # b. Person installing accepts "net use" substitute drive letter to shorten path to workspace folder. REM # c. PDTool performs backups of the following files: REM # PDTool_HOME\bin\setVars.bat REM # PDTOOL_DESTINATION_HOME\setMyPrePDToolVars.bat REM # PDTOOL_DESTINATION_HOME\setMyPostPDToolVars.bat REM # PDTOOL_HOME\AutomatedTestFramework\regression\bin\setVars.bat REM # d. PDTool copies installer source files to the target PDTool directory. REM # e. PDTool copies default setMyPrePDToolVars.bat and setMyPostPDToolVars.bat to the target PDTool installation home directory. REM # f. PDTool modifes the following files: REM # %DEF_PDTOOL_DESTINATION_HOME%\setMyPrePDToolVars.bat REM # Example: C:\Users\username\.compositesw\PDTool7.0.0_SVN\setMyPrePDToolVars.bat REM # %DEF_PDTOOL_DESTINATION_HOME%\%DEF_PDTOOL_DESTINATION_DIR%\bin\setVars.bat REM # Example: C:\Users\username\.compositesw\PDTool7.0.0_SVN\PDTool\bin\setVars.bat REM # %DEF_PDTOOL_DESTINATION_HOME%\%DEF_PDTOOL_DESTINATION_DIR%\AutomatedTestFramework\regression\bin\setVars.bat REM # Example: C:\Users\username\.compositesw\PDTool7.0.0_SVN\PDTool\AutomatedTestFramework\regression\bin\setVars.bat REM # g. PDTool encrypts setMyPrePDToolVars.bat REM # h. If VCS configuration, PDTool removes the workspace directory. REM # i. If VCS configuration and VCS is TFS, PDTool requests use to accept TFS eula agreement REM # j. If VCS configuration, PDTool initializes the workspace directory REM ####################################################### REM # Default Input Values for PDTool Installation REM ####################################################### REM # Force SetupPDTool.bat to use default values when present and bypass prompting the user. Values=[Y or N]. This will streamline setup. REM # Set to "Y" to bypass prompting for defaults values that are set with a value. set DEF_FORCE_PROMPT_BYPASS=Y REM # Default for I_JAVA_HOME. Use %JAVA_HOME% if it is set in the environment and is JRE7. Another alternative is to set to Cisco DV Studio JRE path. set DEF_JAVA_HOME=C:\Program Files\Java\jre7 REM # Default for I_PDTOOL_DESTINATION_HOME. This is the base PDTool installation folder. set DEF_PDTOOL_DESTINATION_HOME=C:\Users\%USERNAME%\.compositesw\PDTool7.0.0_TFS REM # Default for I_PDTOOL_DESTINATION_DIR. This is the default PDTool directory name. set DEF_PDTOOL_DESTINATION_DIR=PDTool REM # Default for I_VALID_ENV_CONFIG_PAIRS REM # These pairs provide the ability to use a short environment name in place of the configuration property name when instructing PDTool on which environment to deploy to. REM # Applicable to NOVCS and VCS installations. REM # Format: [vcs-type-char][env-type]~[config-name] Example: NDEV~deploy_NOVCS_DEV,NUAT~deploy_NOVCS_UAT,NPROD~deploy_NOVCS_PROD REM # Comma separated, no space and no double quotes. Tilde separates pairs: ENV_TYPE~ConfigFileName. The .properties extension is not included and gets added automatically. REM # vcs-type-char = represents the first characters of the VCS environment. N=NOVCS,S=SVN,T=TFS,G=GIT,P=P4,C=CVS REM # env-type = represents the CIS environment short name deploying to. Examples: DEV, ATA, ADA, CIT, SIT, UAT, TT, PROD, DR REM # The combination of [vcs-type-char][env-type] makes it unique across all different env-config pair types. REM # Configuration property file names found in PDTool\resources\config folder. set DEF_VALID_ENV_CONFIG_PAIRS=TDEV~deploy_TFS_DEV1,TUAT~deploy_TFS_UAT1,TPROD~deploy_TFS_PROD1 REM # Default for I_CONFIG_PROPERTY_FILE - VCS Configuration property file used for connecting PDTool to CIS and VCS set DEF_CONFIG_PROPERTY_FILE=deploy_TFS_UAT1.properties REM # Default for I_CIS_USERNAME. Generally this will be the standard computer USERNAME value. set DEF_CIS_USERNAME=admin REM # Default for I_CIS_DOMAIN. CIS Domain used for connection by CIS_USERNAME set DEF_CIS_DOMAIN=composite REM # Default for I_CONFIGURE_VCS set DEF_CONFIGURE_VCS=Y REM # Default for I_VCS_BASE_TYPE=[SVN|TFS|GIT|P4|CVS] set DEF_VCS_BASE_TYPE=TFS REM # Default for I_VCS_EDITOR. Windows=notepad and UNIX=vi set DEF_VCS_EDITOR=notepad REM # Default for I_VCS_HOME is the location of where the VCS client executable is located set DEF_VCS_HOME=%DEF_PDTOOL_DESTINATION_HOME%\VCSClients\TFS_TEE_client REM # Default for I_VCS_REPOSITORY_URL - Always use 4 forward slashes to escape https://url --> https:////url and no slash at the end. set DEF_VCS_REPOSITORY_URL=http:////localhost:8080/tfs/CompositeCollection REM # Default for I_VCS_PROJECT_ROOT - One or more relative VCS folders that extend from DEF_VCS_REPOSITORY_URL. set DEF_VCS_PROJECT_ROOT=Composite_7.0.0/Rel REM # Default for I_RELEASE_FOLDER - The relative VCS folders path that makes up the variable portion for a given release. This is simply a default folder to start with. REM # During normal operation RELEASE_FOLDER is dynamically changed by using -release option with ExecutePDTool.bat set DEF_RELEASE_FOLDER=20150918 REM # Default for I_VCS_USERNAME. Generally this will be the standard computer USERNAME value. set DEF_VCS_USERNAME=%USERNAME% REM # Default for I_VCS_DOMAIN. To be appended to the I_VCS_USERNAME as in user@domain or leave blank if not applicable. TFS requires this. set DEF_VCS_DOMAIN= REM # Default for I_VCS_WORKSPACE_HOME path. Typically this is set to the PDTOOL_HOME variable but may be set to a different folder. REM # Alternatively set it to the short path substitute drive path PDTOOL_SUBSTITUTE_DRIVE referenced in setMyPrePDToolVars.bat REM # This is the parent folder to where the workspace name folder "I_VCS_WORKSPACE_NAME" is a child. set DEF_VCS_WORKSPACE_HOME=%%%%PDTOOL_SUBSTITUTE_DRIVE%%%% REM # Default for I_VCS_WORKSPACE_NAME. The name of the workspace. set DEF_VCS_WORKSPACE_NAME=TFSww7 REM # Default for I_VCS_TEMP_DIR path. Typically this is the set to the PDTOOL_HOME variable + DEF_VCS_WORKSPACE_NAME + t indicating temp REM # Alternatively set it to the short path substitute drive path PDTOOL_SUBSTITUTE_DRIVE referenced in setMyPrePDToolVars.bat + DEF_VCS_WORKSPACE_NAME + t indicating temp REM # This would resolved to something like J:\SVNwt set DEF_VCS_TEMP_DIR=%%%%PDTOOL_SUBSTITUTE_DRIVE%%%%\%DEF_VCS_WORKSPACE_NAME%t REM # This is the list of drive letters that PDTool will use to search for the first available drive. REM # It will be used as a substitute drive to shorten the overall path to the workspace. set PDTOOL_SUBSTITUTE_DRIVE_LIST=I: J: K: L: M: N: O: P: R: S: T: U: V: W: X: Y: Z: REM # REM # REM ####################################################### REM # Invoke the PDTool Setup script REM ####################################################### REM # Set debug...1=print debug statements. 0=do not print debug statements set debug=0 REM # Set debugReplaceText...0=do not pring debug statements for ParseLineReplaceText. 1=print all ParseLineReplaceText debug. 2=print FOUND only ParseLineReplaceText debug. set debugReplaceText=0 REM # Setup script name set PDTOOL_SETUP_SCRIPT=SetupPDTool.bat pushd . cd .. REM # Default for I_PDTOOL_INSTALL_HOME that is the location of where PDTool was originally unzipped. It is one folder level above the /installer directory. set DEF_PDTOOL_INSTALL_HOME=%CD% popd if not exist %PDTOOL_SETUP_SCRIPT% ( echo. %PDTOOL_SETUP_SCRIPT% does not exist in the current directory=%CD% exit /b 1 ) if "%DEF_FORCE_PROMPT_BYPASS%"=="n" set DEF_FORCE_PROMPT_BYPASS=N if "%DEF_FORCE_PROMPT_BYPASS%"=="Y" set DEF_FORCE_PROMPT_BYPASS=Y if "%DEF_FORCE_PROMPT_BYPASS%"=="N" call %PDTOOL_SETUP_SCRIPT% PDTool if "%DEF_FORCE_PROMPT_BYPASS%"=="Y" call %PDTOOL_SETUP_SCRIPT% PDTool "%DEF_PDTOOL_INSTALL_HOME%" "%DEF_JAVA_HOME%" "%DEF_PDTOOL_DESTINATION_HOME%" "%DEF_PDTOOL_DESTINATION_DIR%" "%DEF_CONFIGURE_VCS%" "%DEF_VCS_BASE_TYPE%" "%DEF_VCS_HOME%" "%DEF_VCS_REPOSITORY_URL%" "%DEF_VCS_PROJECT_ROOT%" "%DEF_RELEASE_FOLDER%" "%DEF_VCS_WORKSPACE_HOME%" "%DEF_VCS_WORKSPACE_NAME%" "%DEF_VCS_TEMP_DIR%" "%DEF_VCS_USERNAME%" "%DEF_VCS_DOMAIN%" "" "%DEF_CIS_USERNAME%" "%DEF_CIS_DOMAIN%" "" "" "%DEF_CONFIG_PROPERTY_FILE%" "%DEF_VCS_EDITOR%" "%DEF_VALID_ENV_CONFIG_PAIRS%" pause
dvbu-test/PDTool
installer/PDTool-VCS.bat
bat
bsd-3-clause
11,439
node web/js/server/server.js
dezvell/realtimechat
chat.bat
bat
bsd-3-clause
28
REM This batch file requires ONE (1) parameter: REM the path to the local copy of the Open SDK help sources ($/Publications/Projects/OpenSDK) set ORIGDIR=%CD% chdir .\Help\Working\Output\HtmlHelp1\html REM Push docs to Open SDK WebHelp source REM check out destination files "C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\tf.exe" checkout /recursive $/Publications/Projects/OpenSDK/html $/Publications/Projects/OpenSDK/api.hhc $/Publications/Projects/OpenSDK/api.hhk REM copy HTML to destination, fixing stuff up along the way %ORIGDIR%\tools\rxcopy %ORIGDIR%\tools\rules_htm.txt *.htm %1\html\ > %1\html\copied_files.txt REM copy TOC and Index to destination xcopy ..\api.hh? %1\ /Y /Q REM update FPJ file for RoboHelp chdir /d %1\html %ORIGDIR%\tools\buildfpj.exe html.fpj < copied_files.txt del copied_files.txt REM add all HTML files (in case new files were added) "C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\tf.exe" add /recursive $/Publications/Projects/OpenSDK/html REM check in modified files "C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\tf.exe" checkin /recursive /noprompt /comment:"Checked in auto-generated Cloud Services help content" $/Publications/Projects/OpenSDK/html $/Publications/Projects/OpenSDK/api.hhc $/Publications/Projects/OpenSDK/api.hhk chdir /d %ORIGDIR%
HotDocsCorp/hotdocs-open-sdk
Help/pushdoc.bat
bat
bsd-3-clause
1,353
@echo off pushd %~dp0 "%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_LISTSWS.S03_OperationOnListItem.MSLISTSWS_S03_TC34_GetListItemChanges_MetaInfo /testcontainer:..\..\MS-LISTSWS\TestSuite\bin\Debug\MS-LISTSWS_TestSuite.dll /runconfig:..\..\MS-LISTSWS\MS-LISTSWS.testsettings /unique pause
XinwLi/Interop-TestSuites-1
SharePoint/Source/Scripts/MS-LISTSWS/RunMSLISTSWS_S03_TC34_GetListItemChanges_MetaInfo.cmd
bat
mit
315
@ECHO OFF setlocal DISABLEDELAYEDEXPANSION SET BIN_TARGET=%~dp0/../nesbot/carbon/bin/upgrade-carbon php "%BIN_TARGET%" %*
CalderaWP/Caldera-Forms
vendor/bin/upgrade-carbon.bat
bat
gpl-2.0
122
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . set I18NSPHINXOPTS=%SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% set I18NSPHINXOPTS=-D latex_paper_size=%PAPER% %I18NSPHINXOPTS% ) if "%1" == "" goto help if "%1" == "help" ( :help echo.Please use `make ^<target^>` where ^<target^> is one of echo. html to make standalone HTML files echo. dirhtml to make HTML files named index.html in directories echo. singlehtml to make a single large HTML file echo. pickle to make pickle files echo. json to make JSON files echo. htmlhelp to make HTML files and a HTML help project echo. qthelp to make HTML files and a qthelp project echo. devhelp to make HTML files and a Devhelp project echo. epub to make an epub echo. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter echo. text to make text files echo. man to make manual pages echo. texinfo to make Texinfo files echo. gettext to make PO message catalogs echo. changes to make an overview over all changed/added/deprecated items echo. xml to make Docutils-native XML files echo. pseudoxml to make pseudoxml-XML files for display purposes echo. linkcheck to check all external links for integrity echo. doctest to run all doctests embedded in the documentation if enabled goto end ) if "%1" == "clean" ( for /d %%i in (%BUILDDIR%\*) do rmdir /q /s %%i del /q /s %BUILDDIR%\* goto end ) %SPHINXBUILD% 2> nul if errorlevel 9009 ( echo. echo.The 'sphinx-build' command was not found. Make sure you have Sphinx echo.installed, then set the SPHINXBUILD environment variable to point echo.to the full path of the 'sphinx-build' executable. Alternatively you echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from echo.http://sphinx-doc.org/ exit /b 1 ) if "%1" == "html" ( %SPHINXBUILD% -b html %ALLSPHINXOPTS% %BUILDDIR%/html if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "singlehtml" ( %SPHINXBUILD% -b singlehtml %ALLSPHINXOPTS% %BUILDDIR%/singlehtml if errorlevel 1 exit /b 1 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run HTML Help Workshop with the ^ .hhp project file in %BUILDDIR%/htmlhelp. goto end ) if "%1" == "qthelp" ( %SPHINXBUILD% -b qthelp %ALLSPHINXOPTS% %BUILDDIR%/qthelp if errorlevel 1 exit /b 1 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\Icinga-mobile.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Icinga-mobile.ghc goto end ) if "%1" == "devhelp" ( %SPHINXBUILD% -b devhelp %ALLSPHINXOPTS% %BUILDDIR%/devhelp if errorlevel 1 exit /b 1 echo. echo.Build finished. goto end ) if "%1" == "epub" ( %SPHINXBUILD% -b epub %ALLSPHINXOPTS% %BUILDDIR%/epub if errorlevel 1 exit /b 1 echo. echo.Build finished. The epub file is in %BUILDDIR%/epub. goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex if errorlevel 1 exit /b 1 echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdf" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf cd %BUILDDIR%/.. echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "latexpdfja" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex cd %BUILDDIR%/latex make all-pdf-ja cd %BUILDDIR%/.. echo. echo.Build finished; the PDF files are in %BUILDDIR%/latex. goto end ) if "%1" == "text" ( %SPHINXBUILD% -b text %ALLSPHINXOPTS% %BUILDDIR%/text if errorlevel 1 exit /b 1 echo. echo.Build finished. The text files are in %BUILDDIR%/text. goto end ) if "%1" == "man" ( %SPHINXBUILD% -b man %ALLSPHINXOPTS% %BUILDDIR%/man if errorlevel 1 exit /b 1 echo. echo.Build finished. The manual pages are in %BUILDDIR%/man. goto end ) if "%1" == "texinfo" ( %SPHINXBUILD% -b texinfo %ALLSPHINXOPTS% %BUILDDIR%/texinfo if errorlevel 1 exit /b 1 echo. echo.Build finished. The Texinfo files are in %BUILDDIR%/texinfo. goto end ) if "%1" == "gettext" ( %SPHINXBUILD% -b gettext %I18NSPHINXOPTS% %BUILDDIR%/locale if errorlevel 1 exit /b 1 echo. echo.Build finished. The message catalogs are in %BUILDDIR%/locale. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes if errorlevel 1 exit /b 1 echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck if errorlevel 1 exit /b 1 echo. echo.Link check complete; look for any errors in the above output ^ or in %BUILDDIR%/linkcheck/output.txt. goto end ) if "%1" == "doctest" ( %SPHINXBUILD% -b doctest %ALLSPHINXOPTS% %BUILDDIR%/doctest if errorlevel 1 exit /b 1 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) if "%1" == "xml" ( %SPHINXBUILD% -b xml %ALLSPHINXOPTS% %BUILDDIR%/xml if errorlevel 1 exit /b 1 echo. echo.Build finished. The XML files are in %BUILDDIR%/xml. goto end ) if "%1" == "pseudoxml" ( %SPHINXBUILD% -b pseudoxml %ALLSPHINXOPTS% %BUILDDIR%/pseudoxml if errorlevel 1 exit /b 1 echo. echo.Build finished. The pseudo-XML files are in %BUILDDIR%/pseudoxml. goto end ) :end
MHST14-16-Dream/Icinga-Mobile
docs/sphinx/make.bat
bat
gpl-3.0
6,715
:: :: Licensed to the Apache Software Foundation (ASF) under one or more :: contributor license agreements. See the NOTICE file distributed :: with this work for additional information regarding copyright :: ownership. The ASF licenses this file to you under the Apache :: License, Version 2.0 (the "License"); you may not use this file :: except in compliance with the License. You may obtain a copy of :: the License at :: :: http://www.apache.org/licenses/LICENSE-2.0 :: :: Unless required by applicable law or agreed to in writing, software :: distributed under the License is distributed on an "AS IS" BASIS, :: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or :: implied. See the License for the specific language governing :: permissions and limitations under the License. :: :: Copyright 1999-2007 Rogue Wave Software, Inc. :: @%~dp0configure.bat %*
pathscale/stdcxx
generate.bat
bat
apache-2.0
912
rem Simple example to compile an OT wrapper. set OT_PREFIX=C:\Python27\Lib\site-packages\openturns set MINGW_PREFIX=%OT_PREFIX%\MinGW @rem compile wrapper %MINGW_PREFIX%\bin\gcc -Wl,--enable-auto-import wrapper.c -I%OT_PREFIX%\include -I%OT_PREFIX%\include\openturns -I%MINGW_PREFIX%\include -L%OT_PREFIX% -DHAVE_PTHREAD_H -DPACKAGE_NAME -DPACKAGE_VERSION -shared -lpthreadGC2 -lOT -lOTbind -o wcode.dll @rem sleep for a few seconds @CHOICE /T 5 /C ync /CS /D y @rem pause @exit
dbarbier/ot-svn
distro/windows/examples/mingw_wrapper_calling_shell_command/make.bat
bat
gpl-3.0
499
epicsEnvSet("IOC","") epicsEnvSet("TOP", ".") ## Load record instances dbLoadRecords "beam_line_example.db" iocInit epicsEnvShow EPICS_CA_SERVER_PORT
mkeilman/sirepo
sirepo/package_data/template/webcon/lib/epics-boot.cmd
bat
apache-2.0
152
@ECHO OFF REM ========== COPYRIGHT/COPYLEFT ========== REM (C) 2016 Intel Deutschland GmbH REM Author: Michael Soegtrop REM Released to the public by Intel under the REM GNU Lesser General Public License Version 2.1 or later REM See https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html REM ========== BUILD COQ ========== call MakeCoq_SetRootPath call MakeCoq_MinGW.bat ^ -arch=64 ^ -mode=absolute ^ -ocaml=Y ^ -make=Y ^ -coqver=8.5pl3 ^ -destcyg="%ROOTPATH%\cygwin_coq64_85pl3_abs" ^ -destcoq="%ROOTPATH%\coq64_85pl3_abs" IF %ERRORLEVEL% NEQ 0 ( ECHO MakeCoq_85pl3_abs_ocaml.bat failed with error code %ERRORLEVEL% EXIT /b %ERRORLEVEL% )
letouzey/coq-wip
dev/build/windows/MakeCoq_85pl3_abs_ocaml.bat
bat
lgpl-2.1
695