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
cmd_/home/shizhai/new_zhongwang/trunk/build_dir/target-mips_r2_uClibc-0.9.33.2/batman-adv/batman-adv-2014.2.0/batman-adv.ko := mips-openwrt-linux-uclibc-ld -r -m elf32btsmip -T /home/shizhai/new_zhongwang/trunk/build_dir/target-mips_r2_uClibc-0.9.33.2/linux-ar71xx_generic/linux-3.10.4/scripts/module-common.lds -s --build-id -o /home/shizhai/new_zhongwang/trunk/build_dir/target-mips_r2_uClibc-0.9.33.2/batman-adv/batman-adv-2014.2.0/batman-adv.ko /home/shizhai/new_zhongwang/trunk/build_dir/target-mips_r2_uClibc-0.9.33.2/batman-adv/batman-adv-2014.2.0/batman-adv.o /home/shizhai/new_zhongwang/trunk/build_dir/target-mips_r2_uClibc-0.9.33.2/batman-adv/batman-adv-2014.2.0/batman-adv.mod.o
shizhai/wprobe
build_dir/target-mips_r2_uClibc-0.9.33.2/batman-adv/batman-adv-2014.2.0/.batman-adv.ko.cmd
bat
gpl-2.0
693
@echo off 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. if "%OS%" == "Windows_NT" setlocal rem --------------------------------------------------------------------------- rem NT Service Install/Uninstall script rem rem Options rem install Install the service using Tomcat7 as service name. rem Service is installed using default settings. rem remove Remove the service from the System. rem rem name (optional) If the second argument is present it is considered rem to be new service name rem rem $Id: service.bat 1000718 2010-09-24 06:00:00Z mturk $ rem --------------------------------------------------------------------------- set "SELF=%~dp0%service.bat" rem Guess CATALINA_HOME if not defined set "CURRENT_DIR=%cd%" if not "%CATALINA_HOME%" == "" goto gotHome set "CATALINA_HOME=%cd%" if exist "%CATALINA_HOME%\bin\tomcat7.exe" goto okHome rem CD to the upper dir cd .. set "CATALINA_HOME=%cd%" :gotHome if exist "%CATALINA_HOME%\bin\tomcat7.exe" goto okHome echo The tomcat.exe was not found... echo The CATALINA_HOME environment variable is not defined correctly. echo This environment variable is needed to run this program goto end :okHome rem Make sure prerequisite environment variables are set if not "%JAVA_HOME%" == "" goto gotJdkHome if not "%JRE_HOME%" == "" goto gotJreHome echo Neither the JAVA_HOME nor the JRE_HOME environment variable is defined echo Service will try to guess them from the registry. goto okJavaHome :gotJreHome if not exist "%JRE_HOME%\bin\java.exe" goto noJavaHome if not exist "%JRE_HOME%\bin\javaw.exe" goto noJavaHome goto okJavaHome :gotJdkHome if not exist "%JAVA_HOME%\jre\bin\java.exe" goto noJavaHome if not exist "%JAVA_HOME%\jre\bin\javaw.exe" goto noJavaHome if not exist "%JAVA_HOME%\bin\javac.exe" goto noJavaHome if not "%JRE_HOME%" == "" goto okJavaHome set "JRE_HOME=%JAVA_HOME%\jre" goto okJavaHome :noJavaHome echo The JAVA_HOME environment variable is not defined correctly echo This environment variable is needed to run this program echo NB: JAVA_HOME should point to a JDK not a JRE goto end :okJavaHome if not "%CATALINA_BASE%" == "" goto gotBase set "CATALINA_BASE=%CATALINA_HOME%" :gotBase set "EXECUTABLE=%CATALINA_HOME%\bin\tomcat7.exe" rem Set default Service name set SERVICE_NAME=Tomcat7 set PR_DISPLAYNAME=Apache Tomcat 7 if "x%1x" == "xx" goto displayUsage set SERVICE_CMD=%1 shift if "x%1x" == "xx" goto checkServiceCmd :checkUser if "x%1x" == "x/userx" goto runAsUser if "x%1x" == "x--userx" goto runAsUser set SERVICE_NAME=%1 set PR_DISPLAYNAME=Apache Tomcat %1 shift if "x%1x" == "xx" goto checkServiceCmd goto checkUser :runAsUser shift if "x%1x" == "xx" goto displayUsage set SERVICE_USER=%1 shift runas /env /savecred /user:%SERVICE_USER% "%COMSPEC% /K \"%SELF%\" %SERVICE_CMD% %SERVICE_NAME%" goto end :checkServiceCmd if /i %SERVICE_CMD% == install goto doInstall if /i %SERVICE_CMD% == remove goto doRemove if /i %SERVICE_CMD% == uninstall goto doRemove echo Unknown parameter "%1" :displayUsage echo. echo Usage: service.bat install/remove [service_name] [/user username] goto end :doRemove rem Remove the service "%EXECUTABLE%" //DS//%SERVICE_NAME% if not errorlevel 1 goto removed echo Failed removing '%SERVICE_NAME%' service goto end :removed echo The service '%SERVICE_NAME%' has been removed goto end :doInstall rem Install the service echo Installing the service '%SERVICE_NAME%' ... echo Using CATALINA_HOME: "%CATALINA_HOME%" echo Using CATALINA_BASE: "%CATALINA_BASE%" echo Using JAVA_HOME: "%JAVA_HOME%" echo Using JRE_HOME: "%JRE_HOME%" rem Use the environment variables as an example rem Each command line option is prefixed with PR_ set PR_DESCRIPTION=Apache Tomcat 7.0.5 Server - http://tomcat.apache.org/ set "PR_INSTALL=%EXECUTABLE%" set "PR_LOGPATH=%CATALINA_BASE%\logs" set "PR_CLASSPATH=%CATALINA_HOME%\bin\bootstrap.jar;%CATALINA_BASE%\bin\tomcat-juli.jar;%CATALINA_HOME%\bin\tomcat-juli.jar" rem Set the server jvm from JAVA_HOME set "PR_JVM=%JRE_HOME%\bin\server\jvm.dll" if exist "%PR_JVM%" goto foundJvm rem Set the client jvm from JAVA_HOME set "PR_JVM=%JRE_HOME%\bin\client\jvm.dll" if exist "%PR_JVM%" goto foundJvm set PR_JVM=auto :foundJvm echo Using JVM: "%PR_JVM%" "%EXECUTABLE%" //IS//%SERVICE_NAME% --StartClass org.apache.catalina.startup.Bootstrap --StopClass org.apache.catalina.startup.Bootstrap --StartParams start --StopParams stop if not errorlevel 1 goto installed echo Failed installing '%SERVICE_NAME%' service goto end :installed rem Clear the environment variables. They are not needed any more. set PR_DISPLAYNAME= set PR_DESCRIPTION= set PR_INSTALL= set PR_LOGPATH= set PR_CLASSPATH= set PR_JVM= rem Set extra parameters "%EXECUTABLE%" //US//%SERVICE_NAME% --JvmOptions "-Dcatalina.base=%CATALINA_BASE%;-Dcatalina.home=%CATALINA_HOME%;-Djava.endorsed.dirs=%CATALINA_HOME%\endorsed" --StartMode jvm --StopMode jvm rem More extra parameters set "PR_LOGPATH=%CATALINA_BASE%\logs" set PR_STDOUTPUT=auto set PR_STDERROR=auto "%EXECUTABLE%" //US//%SERVICE_NAME% ++JvmOptions "-Djava.io.tmpdir=%CATALINA_BASE%\temp;-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager;-Djava.util.logging.config.file=%CATALINA_BASE%\conf\logging.properties" --JvmMs 128 --JvmMx 256 echo The service '%SERVICE_NAME%' has been installed. :end cd "%CURRENT_DIR%"
Esleelkartea/kz-adeada-talleres-electricos-
kzadeadatallereselectricos_v1.0.0_win32_installer/windows/xampp/tomcat/bin/service.bat
bat
gpl-2.0
6,337
@ECHO OFF REM Command file for Sphinx documentation set SPHINXBUILD=sphinx-build set BUILDDIR=_build set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% . if NOT "%PAPER%" == "" ( set ALLSPHINXOPTS=-D latex_paper_size=%PAPER% %ALLSPHINXOPTS% ) 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. 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. latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter 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 echo. echo.Build finished. The HTML pages are in %BUILDDIR%/html. goto end ) if "%1" == "dirhtml" ( %SPHINXBUILD% -b dirhtml %ALLSPHINXOPTS% %BUILDDIR%/dirhtml echo. echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. goto end ) if "%1" == "pickle" ( %SPHINXBUILD% -b pickle %ALLSPHINXOPTS% %BUILDDIR%/pickle echo. echo.Build finished; now you can process the pickle files. goto end ) if "%1" == "json" ( %SPHINXBUILD% -b json %ALLSPHINXOPTS% %BUILDDIR%/json echo. echo.Build finished; now you can process the JSON files. goto end ) if "%1" == "htmlhelp" ( %SPHINXBUILD% -b htmlhelp %ALLSPHINXOPTS% %BUILDDIR%/htmlhelp 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 echo. echo.Build finished; now you can run "qcollectiongenerator" with the ^ .qhcp project file in %BUILDDIR%/qthelp, like this: echo.^> qcollectiongenerator %BUILDDIR%\qthelp\SRL5.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\SRL5.ghc goto end ) if "%1" == "latex" ( %SPHINXBUILD% -b latex %ALLSPHINXOPTS% %BUILDDIR%/latex echo. echo.Build finished; the LaTeX files are in %BUILDDIR%/latex. goto end ) if "%1" == "changes" ( %SPHINXBUILD% -b changes %ALLSPHINXOPTS% %BUILDDIR%/changes echo. echo.The overview file is in %BUILDDIR%/changes. goto end ) if "%1" == "linkcheck" ( %SPHINXBUILD% -b linkcheck %ALLSPHINXOPTS% %BUILDDIR%/linkcheck 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 echo. echo.Testing of doctests in the sources finished, look at the ^ results in %BUILDDIR%/doctest/output.txt. goto end ) :end
SRL/SRL-5
doc/sphinx/make.bat
bat
gpl-3.0
3,067
@echo off ::ÆäÖС°ÊäÈë²»»Ø³µÔËÐгÌÐò¡±µÄÔ­ÌûµØÖ·£ºhttp://bbs.verybat.org/viewthread.php?tid=19628 ::±ê×¼ASCII±íhttp://baike.baidu.com/view/812.htm?fr=ala0_1_1 color 0f chcp 437 >nul graftabl 936 >nul echo: echo: echo: echo: Ð޸ģ¨1£© »Ö¸´£¨2£© echo: echo: set /p= ÇëÊäÈë²Ù×÷ÐòºÅ:<nul ::¶¨Òå°´¼üֵΪASCIIÂë set /a _1=49,_2=50 ::ÔËÐÐdebug·µ»ØASCIIÂë echo exit|cmd /kprompt $_e 100 CD 16 B4 4C CD 21$_g$_|debug>nul if %errorlevel%==%_1% goto 1 if %errorlevel%==%_2% goto 2 :1 attrib -r "D:\GreenBrowser ¼òÌåÖÐÎÄÂÌÉ«ÔöÇ¿°æ\User\SearchEngine.ini" attrib -r "D:\TabKey\settings.xml" goto :eof :2 attrib +r "D:\GreenBrowser ¼òÌåÖÐÎÄÂÌÉ«ÔöÇ¿°æ\User\SearchEngine.ini" attrib +r "D:\TabKey\settings.xml" goto :eof
auspbro/CodeSnippets
Batch/常用批处理/修改GB搜索引擎.bat
bat
gpl-3.0
764
@echo off set zip="C:\Program Files\7-Zip\7z.exe" set hour=%time:~0,2% if "%time:~0,1%"==" " set hour=0%time:~1,1% set dt=%date:~10,4%-%date:~4,2%-%date:~7,2%_%hour%%time:~3,2% set dir=ss3d-server-%dt% mkdir %dir% mkdir %dir%\bin mkdir %dir%\bin\server xcopy /E SS3d_server\bin\Release\* %dir%\bin\server cd %dir% FOR /F "tokens=*" %%G IN ('DIR /B /AD /S *.svn*') DO RMDIR /S /Q "%%G" cd .. %zip% -tzip a %dir%.zip %dir% rd /S /Q %dir% pause
ss13remake/ss13remake
serverpackagebuild.bat
bat
gpl-3.0
458
@echo off webmerge -f "%~dp0\conf\sass.js.conf.xml" %* --webserver
mgreter/sass.link.js
webserver.bat
bat
gpl-3.0
67
@echo off :: Copyright 2009,2011 Jason Moxham :: :: This file is part of the MPIR Library. :: :: The MPIR Library is free software; you can redistribute it and/or modify :: it under the terms of the GNU Lesser General Public License as published :: by the Free Software Foundation; either version 2.1 of the License, or (at :: your option) any later version. :: :: The MPIR Library is distributed in the hope that it will be useful, but :: WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY :: or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public :: License for more details. :: :: You should have received a copy of the GNU Lesser General Public License :: along with the MPIR Library; see the file COPYING.LIB. If not, write :: to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, :: Boston, MA 02110-1301, USA. :: set default lib type as static set LIBTYPE=lib :: set default abi to ? set ABI=? :: set default cpu to ? set CPU=? :: parse params :lp shift if "%0" == "" goto :exitlp if "%0" == "--enable-shared" ( set LIBTYPE=dll) if "%0" == "--enable-static" ( set LIBTYPE=lib) if "%0" == "--disable-shared" ( set LIBTYPE=lib) if "%0" == "--disable-static" ( set LIBTYPE=dll) if "%0" == "ABI" ( shift set ABI=%1 ) if "%0" == "--cpu" ( shift set CPU=%1 ) goto :lp :exitlp :: ARCH is native ABI set ARCH=64 if %PROCESSOR_ARCHITECTURE% == x86 ( set ARCH=32) set VCTARGET= if %ARCH% == 64 ( if %ABI% == 64 (set VCTARGET=amd64) if %ABI% == 32 (set VCTARGET=x86_amd64) ) if %ARCH% == 32 ( if %ABI% == 64 (set VCTARGET=amd64_x86) if %ABI% == 32 (set VCTARGET=x86) ) :: now we have to find a compiler that matches the required abi or default=? copy ..\build.vc10\config.guess.c . > nul 2>&1 cl /nologo config.guess.c > nul 2>&1 if errorlevel 1 goto :step1 config.guess.exe print > config.guess.bat call config.guess.bat if %ABI% == ? goto :gotcc if %GBITS% == %ABI% goto :gotcc :step1 if exist "%VS100COMNTOOLS%\..\..\VC\vcvarsall.bat" ( call "%VS100COMNTOOLS%\..\..\VC\vcvarsall.bat" %VCTARGET% goto :checkcc ) if exist "%VS90COMNTOOLS%\..\..\VC\vcvarsall.bat" ( call "%VS90COMNTOOLS%\..\..\VC\vcvarsall.bat" %VCTARGET% goto :checkcc ) :nocc echo cant find a suitible compiler exit /b 1 :checkcc cl /nologo config.guess.c > nul 2>&1 if errorlevel 1 goto :nocc config.guess.exe print > config.guess.bat call config.guess.bat if %ABI% == ? goto :gotcc if %GBITS% == %ABI% goto :gotcc goto :nocc :gotcc if %ABI% == ? ( set ABI=%GBITS%) if %CPU% == ? ( set CPU=%GCPU%) :: now find yasm , not needed for C build? if %CPU% == none goto :gotyasm set YASMEXE=yasm.exe yasm.exe --version > nul 2>&1 if not errorlevel 1 goto :gotyasm set YASMEXE=vsyasm.exe vsyasm.exe --version > nul 2>&1 if not errorlevel 1 goto :gotyasm if exist "%YASMPATH%\yasm.exe" ( set YASMEXE="%YASMPATH%\yasm.exe" goto :gotyasm ) if exist "%YASMPATH%\vsyasm.exe" ( set YASMEXE="%YASMPATH%\vsyasm.exe" goto :gotyasm ) if exist "%VS100COMNTOOLS%\..\..\VC\bin\vsyasm.exe" ( set YASMEXE="%VS100COMNTOOLS%\..\..\VC\bin\vsyasm.exe" goto :gotyasm ) if exist "c:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\BuildCustomizations\vsyasm.exe" ( set YASMEXE="c:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\BuildCustomizations\vsyasm.exe" goto :gotyasm ) if exist "%VS90COMNTOOLS%\..\..\VC\bin\yasm.exe" ( set YASMEXE="%VS90COMNTOOLS%\..\..\VC\bin\yasm.exe" goto :gotyasm ) echo cant find yasm exit /b 1 :gotyasm :: set config.params.bat to the settings needed by make etc echo (set LIBTYPE=%LIBTYPE%) > config.params.bat echo (set FLAGS=/Ox /Ot /D "NDEBUG" /D "HAVE_CONFIG_H" /nologo /D "_MBCS" /GS-) >> config.params.bat if %LIBTYPE% == lib (set FLAGS1=/Oi /D "_LIB" /D "PIC" /MT) if %LIBTYPE% == dll (set FLAGS1=/D "__GMP_LIBGMP_DLL" /D "_WINDLL" /GF /EHsc /MD) echo (set FLAGS1=%FLAGS1%) >> config.params.bat set MPNPATH=. if %ABI% == 32 ( if %CPU% == x86 (set MPNPATH=x86w) if %CPU% == i386 (set MPNPATH=x86w) if %CPU% == i486 (set MPNPATH=x86w) if %CPU% == i586 (set MPNPATH=x86w) if %CPU% == pentium (set MPNPATH=x86w) if %CPU% == pentiummmx (set MPNPATH=x86w) if %CPU% == pentiumpro (set MPNPATH=x86w x86w\p6) if %CPU% == i686 (set MPNPATH=x86w x86w\p6) if %CPU% == pentium2 (set MPNPATH=x86w x86w\p6 x86w\p6\mmx) if %CPU% == pentium3 (set MPNPATH=x86w x86w\p6 x86w\p6\mmx x86w\p6\p3mmx) if %CPU% == k6 (set MPNPATH=x86w) if %CPU% == k62 (set MPNPATH=x86w) if %CPU% == k63 (set MPNPATH=x86w) if %CPU% == k7 (set MPNPATH=x86w) if %CPU% == athlon (set MPNPATH=x86w) if %CPU% == pentium4 (set MPNPATH=x86w x86w\pentium4 x86w\pentium4\mmx x86w\pentium4\sse2) if %CPU% == prescott (set MPNPATH=x86w x86w\pentium4 x86w\pentium4\mmx x86w\pentium4\sse2) if %CPU% == core (set MPNPATH=x86w x86w\pentium4 x86w\pentium4\mmx x86w\pentium4\sse2) if %CPU% == viac3 (set MPNPATH=x86w) if %CPU% == viac32 (set MPNPATH=x86w) if %CPU% == x86_64 (set MPNPATH=x86w) if %CPU% == netburst (set MPNPATH=x86w x86w\pentium4 x86w\pentium4\mmx x86w\pentium4\sse2) if %CPU% == netburstlahf (set MPNPATH=x86w x86w\pentium4 x86w\pentium4\mmx x86w\pentium4\sse2) if %CPU% == k8 (set MPNPATH=x86w x86w\p6 x86w\p6\mmx x86w\p6\p3mmx) if %CPU% == k10 (set MPNPATH=x86w x86w\p6 x86w\p6\mmx x86w\p6\p3mmx) if %CPU% == k102 (set MPNPATH=x86w x86w\p6 x86w\p6\mmx x86w\p6\p3mmx) if %CPU% == k103 (set MPNPATH=x86w x86w\p6 x86w\p6\mmx x86w\p6\p3mmx) if %CPU% == bulldozer (set MPNPATH=x86w x86w\p6 x86w\p6\mmx x86w\p6\p3mmx) if %CPU% == bobcat (set MPNPATH=x86w x86w\p6 x86w\p6\mmx x86w\p6\p3mmx) if %CPU% == core2 (set MPNPATH=x86w x86w\p6 x86w\p6\mmx x86w\p6\p3mmx) if %CPU% == penryn (set MPNPATH=x86w x86w\p6 x86w\p6\mmx x86w\p6\p3mmx) if %CPU% == nehalem (set MPNPATH=x86w x86w\p6 x86w\p6\mmx x86w\p6\p3mmx) if %CPU% == westmere (set MPNPATH=x86w x86w\p6 x86w\p6\mmx x86w\p6\p3mmx) if %CPU% == sandybridge (set MPNPATH=x86w x86w\p6 x86w\p6\mmx x86w\p6\p3mmx) if %CPU% == atom (set MPNPATH=x86w x86w\p6 x86w\p6\mmx x86w\p6\p3mmx) if %CPU% == nano (set MPNPATH=x86w x86w\p6 x86w\p6\mmx x86w\p6\p3mmx) ) if %ABI% == 64 ( if %CPU% == x86_64 (set MPNPATH=x86_64w) if %CPU% == netburst (set MPNPATH=x86_64w x86_64w\netburst) if %CPU% == netburstlahf (set MPNPATH=x86_64w x86_64w\netburst) if %CPU% == k8 (set MPNPATH=x86_64w x86_64w\k8 x86_64w\k8\k8only) if %CPU% == k10 (set MPNPATH=x86_64w x86_64w\k8 x86_64w\k8\k10) if %CPU% == k102 (set MPNPATH=x86_64w x86_64w\k8 x86_64w\k8\k10 x86_64w\k8\k10\k102) if %CPU% == k103 (set MPNPATH=x86_64w x86_64w\k8 x86_64w\k8\k10 x86_64w\k8\k10\k102) if %CPU% == bulldozer (set MPNPATH=x86_64w x86_64w\k8 x86_64w\k8\k10 x86_64w\k8\k10\k102) if %CPU% == bobcat (set MPNPATH=x86_64w x86_64w\bobcat) if %CPU% == core2 (set MPNPATH=x86_64w x86_64w\core2) if %CPU% == penryn (set MPNPATH=x86_64w x86_64w\core2 x86_64w\core2\penryn) if %CPU% == nehalem (set MPNPATH=x86_64w x86_64w\nehalem) if %CPU% == westmere (set MPNPATH=x86_64w x86_64w\nehalem x86_64w\nehalem\westmere) if %CPU% == sandybridge (set MPNPATH=x86_64w x86_64w\sandybridge) if %CPU% == atom (set MPNPATH=x86_64w x86_64w\atom) if %CPU% == nano (set MPNPATH=x86_64w x86_64w\k8 x86_64w\k8\k8only) ) echo (set MPNPATH=%MPNPATH%) >> config.params.bat echo (set ABI=%ABI%) >> config.params.bat echo setting params to type config.params.bat exit /b 0
qsnake/mpir
win/configure.bat
bat
gpl-3.0
7,698
@echo off ::ÉèÖñ¾»úÈȵã... ::ʹÓÃnetsh wlan show drivers ²é¿´ÊÇ·ñÖ§³Ö³ÐÔØÍøÂç echo É趨ÐéÄâWIFIÍø¿¨ netsh wlan set hostednetwork mode=allow ssid=OrCountrySafe key=xyzjoker echo Ç뽫ĿǰµÄÍøÂçÁ¬½Ó·ÖÏíµ½Èȵã netsh wlan start hostednetwork echo Things DONE
FarmerLjx/WEFR
windows/batch/wifi.bat
bat
gpl-3.0
254
::==================================================================:: :: File : JLINK.BAT :: Author: JLJuang :: E-Mail: [email protected] :: NOTE : All copy rights reserved (c) since 2003 ::==================================================================:: @ECHO OFF @echo ################################################## @echo # LINK OBJECTS # @echo ################################################## SET OPTIZE_LEVEL=%1 ::------------------------:: :: Set Target ::------------------------:: SET TARGET=%PROJECT_NAME% SET SAG_FILE=%PROJECT_NAME%.sag SET LD_FILE=%PROJECT_NAME%.ld :SET LINK_LIST= Adc.o Algorithm.o CodeTbl.o Coordinate.o Calibration.o DataFormat.o Nds.o Sys.o Task.o Timer.o TpCmd.o ZET7100_FrequencyHop.o ZET7100_InitScan.o ZET7100_KeyScan.o ZET7100_MutualScan.o ZET7100_Region.o ZET7100_Trace.o IF "%COMPILE_TARGET_IC%" == "ZET7100" ( SET LINK_LIST= Nds.o ZET7100_Trace.o Calibration.o TpCmd.o ZET7100_KeyScan.o ZET7100_Region.o Algorithm.o DataFormat.o Adc.o ZET7100_InitScan.o ZET7100_MutualScan.o Task.o Timer.o Sys.o CodeTbl.o Coordinate.o ZET7100_FrequencyHop.o ) IF "%COMPILE_TARGET_IC%" == "ZET7101" ( SET LINK_LIST= Nds.o ZET7101_Trace.o Calibration.o TpCmd.o ZET7101_KeyScan.o ZET7101_Region.o Algorithm.o DataFormat.o Adc.o ZET7101_InitScan.o ZET7101_MutualScan.o Task.o Timer.o Sys.o CodeTbl.o Coordinate.o ZET7101_FrequencyHop.o ) SET LIB_FILE=..\LIB\%PROJECT_NAME%_%DEF_NAME%_LIB.a SET AR_LIB_FILE=../LIB/%PROJECT_NAME%_%DEF_NAME%_LIB.a SET LIB_OBJ_LIST= I2c.o Isr.o SPI.o Main.o Customer.o %AR_LIB_FILE% ::------------------------:: :: Linker flags ::------------------------:: SET LDFLAGS=-%OPTIZE_LEVEL% -nostartfiles -static -T"%LD_FILE%" -Wl,--gc-sections ::------------------------:: :: Link the data flash ::------------------------:: IF "%COMPILE_TARGET_IC%" == "ZET7100" goto LABEL_ZET7100_SETUP IF "%COMPILE_TARGET_IC%" == "ZET7101" goto LABEL_ZET7101_SETUP :LABEL_ZET7100_SETUP SET LDFLAGS=%LDFLAGS%,--section-start=.DATA_ROM=0xE000,--section-start=.PROJ_ROM=0x00DFFC ::SET LDFLAGS=%LDFLAGS%,--section-start=.DATA_ROM=0xEC00,--section-start=.PROJ_ROM=0x00DFFC :: SET LDFLAGS=%LDFLAGS%,--section-start=.DATA_ROM=0x9C00,--section-start=.PROJ_ROM=0x009BFC GOTO LABEL_SETUP_END :LABEL_ZET7101_SETUP :: SET LDFLAGS=%LDFLAGS%,--section-start=.DATA_ROM=0xC000,--section-start=.PROJ_CS=0x00BFF8,--section-start=.PROJ_ROM=0x00BFFC :: SET LDFLAGS=%LDFLAGS%,--section-start=.CODEOPTION_ROM=0xDFD8,--section-start=.DATA_ROM=0xC000,--section-start=.PROJ_CS=0x00BFF8,--section-start=.PROJ_ROM=0x00BFFC SET LDFLAGS=%LDFLAGS%,--section-start=.CODEOPTION_ROM=0xDFD8,--section-start=.DATA_ROM=0xC000,--section-start=.ENCRYPTION=0x00BFD0,--section-start=.PROJ_CS=0x00BFF8,--section-start=.PROJ_ROM=0x00BFFC GOTO LABEL_SETUP_END :LABEL_SETUP_END: ::------------------------:: :: LINK SECTION ::------------------------:: IF "%COMPILE_TARGET_IC%" == "ZET7100" goto LABEL_ZET7100_LINK_SETUP IF "%COMPILE_TARGET_IC%" == "ZET7101" goto LABEL_ZET7101_LINK_SETUP :LABEL_ZET7100_LINK_SETUP SET RMSEC= ::CALL JLS .MEM_ZETVAR 0x100800 CALL JLS .REG_TRUMA0 0x194004 CALL JLS .REG_TRUMB0 0x194024 ::CALL JLS .MEM_ZETVARPARA 0x100800 CALL JLS .MEM_ZETVARPARA 0x100000 GOTO LABEL_LINK_SETUP_END :LABEL_ZET7101_LINK_SETUP SET RMSEC= ::CALL JLS .MEM_ZETVAR 0x100800 CALL JLS .REG_TRUMA0 0x194004 ::CALL JLS .REG_TRUMB0 0x194024 ::CALL JLS .REG_TRUMB0 0x194024 ::CALL JLS .MEM_ZETVARPARA 0x100800 CALL JLS .MEM_ZETVARPARA 0x100000 GOTO LABEL_LINK_SETUP_END :LABEL_LINK_SETUP_END: ::------------------------:: :: HEX to BIN ::------------------------:: SET OBJCOPYFLAGS=-O binary -S -R .note -R .comment -R .MEM SET OBJCOPYFLAGS=%OBJCOPYFLAGS% %RMSEC% REM SET NMFLAGS = -B -n -c -l -v --numeric-sort SET NMFLAGS= -B -n -l -S ::===============================================:: :: 1. Create LD ::===============================================:: %LDSAG% %SAG_FILE% -o %BIN_PATH%\%LD_FILE% REM COPY %PROJECT_NAME%.LD %BIN_PATH%\ IF EXIST %LIB_FILE% DEL %LIB_FILE% ECHO OFF IF "%COMPILE_OPTION%" == "RELEASE" ( cd .\BIN REM C:\Andes\toolchains\nds32le-elf-mculib-v3m\bin\nds32le-elf-ar.exe rs ..\LIB\Zetouch_LIB.a %LINK_LIST% :DEL %LINK_LIST% & %AR% rs %LIB_FILE% %LINK_LIST% %AR% rs %AR_LIB_FILE% %LINK_LIST% cd .. ) ::===============================================:: :: 2. link ::===============================================:: @CD %BIN_PATH%\ echo OFF IF NOT "%COMPILE_OPTION%" == "RELEASE" ( %CC% %LDFLAGS% %OBJ_LIST% -o %TARGET%.elf -lnds32_isr -lm ) ELSE ( %CC% %LDFLAGS% %LIB_OBJ_LIST% -o %TARGET%.elf -lnds32_isr -lm ) echo OFF ::===============================================:: :: 3. Dump BIN ::===============================================:: IF NOT EXIST %TARGET%.elf (GOTO LABEL_FAIL_END) ::===============================================:: :: 4. For Code debug dump out ::===============================================:: %OBJDUMP% -D %TARGET%.elf > %TARGET%.S REM %OBJDUMP% -x -d -C %TARGET%.elf > %TARGET%.MAP :: For designer simulation REM %OBJDUMP% -D %TARGET%.elf > %TARGET%.S %OBJCOPY% %OBJCOPYFLAGS% %TARGET%.elf JOUT.bin %NM% %NMFLAGS% %TARGET%.elf > %TARGET%.NM %SIZE% %TARGET%.elf @CD.. ECHO OFF GOTO LABEL_END ::===============================================:: :: FAIL END ::===============================================:: :LABEL_FAIL_END @cd .. SET SUCCESS=FALSE2 ::===============================================:: :: END ::===============================================:: :LABEL_END
amaple0229/Zeitec_ZET7100FAE
7101/WorkLib/JLINK.bat
bat
lgpl-2.1
5,600
:: :: media-tools :: Copyright (C) 2019-2021 Olivier Korach :: mailto:olivier.korach AT gmail DOT com :: :: This program is free software; you can redistribute it and/or :: modify it under the terms of the GNU Lesser General Public :: License as published by the Free Software Foundation; either :: version 3 of the License, or (at your option) any later version. :: :: This program is distributed in the hope that it will be useful, :: but WITHOUT ANY WARRANTY; without even the implied warranty of :: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU :: Lesser General Public License for more details. :: :: You should have received a copy of the GNU Lesser General Public License :: along with this program; if not, write to the Free Software Foundation, :: Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. :: video-mux %*
okorach/audio-video-tools
batch-files/mux.bat
bat
lgpl-3.0
861
java -jar server\target\server.jar 4000 gui\src\main\resources\
SeanShubin/javascript-todo-samples
run.bat
bat
unlicense
64
@ECHO OFF REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set BUILDDIR=_build set ALLSPHINXOPTS=-W -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\NaginatorPluginforjenkins-job-builder.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\NaginatorPluginforjenkins-job-builder.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
thomasvandoren/jenkins-job-builder-naginator
doc/make.bat
bat
apache-2.0
6,524
java -cp .;E:\SourceCode\Java\jat;E:\SourceCode\Java\beans\j3d\j3dcore.jar;E:\SourceCode\Java\beans\j3d\j3dutils.jar;E:\SourceCode\Java\beans\j3d\vecmath.jar -mx64m jat.demo.vr.Java3DTimer.Java3DTimer pause
MaximTar/satellite
src/main/resources/libs/JAT/jat/demo/vr/Java3DTimer/run.bat
bat
apache-2.0
207
del /s *.o del /s *.d del /s *.crf del /s *.htm del /s *.lnp del /s *.sct del /s *.plg del /s *.iex @pause
tongjinlv/trtos
Make Clean.bat
bat
apache-2.0
114
java -Dorg.slf4j.simpleLogger.defaultLogLevel=debug -Dorg.slf4j.simpleLogger.logFile=scrape-%1.log -jar scrapers.jar %1
Fedict/dcattools
dist/bin/scrape.bat
bat
bsd-2-clause
120
echo Building Nav2LibTotal bldmake bldfiles @UIQ21 abld build armi urel @UIQ21 echo DONE!
wayfinder/Wayfinder-S60-Navigator
CPP/Targets/Nav2lib/uiq21/make_armi.bat
bat
bsd-3-clause
96
php ..\..\Scaffolder.php Build -in="./" -out="..\ScaffoldTemplateScaffolder.phar"
damz/phpazure-experimental
library/Microsoft/WindowsAzure/CommandLine/Scaffolders/ScaffoldTemplateScaffolder/build.bat
bat
bsd-3-clause
81
6GF36-P4HWR-BFF84-6GFC2-BWX77
mgiljum/Windows-7-Pro-Activator
Activator/Certs/Toshiba/Home Premium B/OEM/slp.cmd
bat
mit
33
@echo off rem ------------------------------------------------------------- rem Yii command line init script for Windows. rem rem @author Qiang Xue <[email protected]> rem @link http://www.yiiframework.com/ rem @copyright Copyright &copy; 2012 Yii Software LLC rem @license http://www.yiiframework.com/license/ rem ------------------------------------------------------------- @setlocal set YII_PATH=%~dp0 if "%PHP_COMMAND%" == "" set PHP_COMMAND=php.exe "%PHP_COMMAND%" "%YII_PATH%yii" %* @endlocal
deesoft/hris
yii.bat
bat
gpl-3.0
513
@echo off if "%OS%" == "Windows_NT" setlocal rem --------------------------------------------------------------------------- rem Start script for the CATALINA Server rem rem $Id: startup.bat 287326 2002-01-15 02:55:39Z patrickl $ rem --------------------------------------------------------------------------- rem Guess CATALINA_HOME if not defined if not "%CATALINA_HOME%" == "" goto gotHome set CATALINA_HOME=. if exist "%CATALINA_HOME%\bin\catalina.bat" goto okHome set CATALINA_HOME=.. :gotHome if exist "%CATALINA_HOME%\bin\catalina.bat" goto okHome echo The CATALINA_HOME environment variable is not defined correctly echo This environment variable is needed to run this program goto end :okHome set EXECUTABLE=%CATALINA_HOME%\bin\catalina.bat rem Check that target executable exists if exist "%EXECUTABLE%" goto okExec echo Cannot find %EXECUTABLE% echo This file is needed to run this program goto end :okExec rem Get remaining unshifted command line arguments and save them in the set CMD_LINE_ARGS= :setArgs if ""%1""=="""" goto doneSetArgs set CMD_LINE_ARGS=%CMD_LINE_ARGS% %1 shift goto setArgs :doneSetArgs call "%EXECUTABLE%" start %CMD_LINE_ARGS% :end
simeshev/parabuild-ci
3rdparty/apache-tomcat-4.1.39/bin/startup.bat
bat
lgpl-3.0
1,173
FOR %%A IN (exe gui msbuild powershell) DO (powershell.exe -nologo -noprofile -command "& { Add-Type -A 'System.IO.Compression.FileSystem'; [IO.Compression.ZipFile]::ExtractToDirectory('.\deploy\Pickles-%%A-%1.zip', '.\deploy\pickles-%1\%%A'); }")
blorgbeard/pickles
unzip.cmd
bat
apache-2.0
247
@echo off set FILTER=cat set Y=0 if /i "%1"=="Y" ( set Y=1 set EXE=yasm.exe set OPT2=-DUSE_YASM -DXBYAK32 set OPT3=win32 ) else if /i "%1"=="64" ( set EXE=nasm.exe set OPT2=-DXBYAK64 set OPT3=win64 set FILTER=normalize_prefix ) else if /i "%1"=="Y64" ( set Y=1 set EXE=yasm.exe set OPT2=-DUSE_YASM -DXBYAK64 set OPT3=win64 set FILTER=normalize_prefix ) else if /i "%1"=="noexcept" ( set EXE=nasm.exe set OPT2=-DXBYAK32 -DXBYAK_NO_EXCEPTION set OPT3=win32 ) else ( set EXE=nasm.exe set OPT2=-DXBYAK32 set OPT3=win32 ) call set_opt bmake -f Makefile.win all echo cl -I../ make_nm.cpp %OPT% %OPT2% /EHs cl -I../ make_nm.cpp %OPT% %OPT2% /EHs make_nm > a.asm rm -rf a.lst echo %EXE% -f %OPT3% -l a.lst a.asm %EXE% -f %OPT3% -l a.lst a.asm rem connect "?????-" and "??" if /i "%Y%"=="1" ( awk "NR > 1 {if (index($3, ""-"")) { conti=substr($3, 0, length($3) - 1) } else { conti = conti $3; print conti; conti = """" }} " < a.lst |%FILTER% > ok.lst ) else ( awk "{if (index($3, ""-"")) { conti=substr($3, 0, length($3) - 1) } else { conti = conti $3; print conti; conti = """" }} " < a.lst |%FILTER% > ok.lst ) make_nm jit > nm.cpp cl -I../ -DXBYAK_TEST nm_frame.cpp %OPT% %OPT2% nm_frame |%FILTER% > x.lst diff -wb x.lst ok.lst && echo "ok"
herumi/xbyak
test/test_nm.bat
bat
bsd-3-clause
1,256
@ECHO OFF SET TOP_DIR=%~dp0 CALL %TOP_DIR%\bin\dsn.run.cmd %1 %2 %3 %4 %5 %6 %7 %8 %9
qinzuoyan/rDSN
run.cmd
bat
mit
89
@echo off setlocal REM Set intermediate env vars because the %VAR:x=y% notation below REM (which replaces the string x with the string y in VAR) REM doesn't handle undefined environment variables. This way REM we're always dealing with defined variables in those tests. set CHK_HOME=_%EC2_HOME% if "%CHK_HOME:"=%" == "_" goto HOME_MISSING "%EC2_HOME:"=%\bin\ec2-cmd" DetachVolume %* goto DONE :HOME_MISSING echo EC2_HOME is not set exit /b 1 :DONE
barnyard/pi
p2p-api/etc/ec2-api-tools-1.3-30349/bin/ec2detvol.cmd
bat
apache-2.0
472
@echo off setlocal enabledelayedexpansion pushd %1 set attempts=5 set counter=0 :retry set /a counter+=1 echo Attempt %counter% out of %attempts% cmd /c npm install https://github.com/projectkudu/KuduScript/tarball/38bc1b8b2f863189558a6f51a65c2fc71283df0c IF %ERRORLEVEL% NEQ 0 goto error goto end :error if %counter% GEQ %attempts% goto :lastError goto retry :lastError popd echo An error has occured during npm install. exit /b 1 :end popd echo Finished successfully. exit /b 0
kenegozi/kudu
Kudu.Services.Web/updateNodeModules.cmd
bat
apache-2.0
489
@echo off REM This file is part of PHP_Depend. REM REM Copyright (c) 2008-2012, Manuel Pichler <[email protected]>. REM All rights reserved. REM REM Redistribution and use in source and binary forms, with or without REM modification, are permitted provided that the following conditions REM are met: REM REM * Redistributions of source code must retain the above copyright REM notice, this list of conditions and the following disclaimer. REM REM * Redistributions in binary form must reproduce the above copyright REM notice, this list of conditions and the following disclaimer in REM the documentation and/or other materials provided with the REM distribution. REM REM * Neither the name of Manuel Pichler nor the names of his REM contributors may be used to endorse or promote products derived REM from this software without specific prior written permission. REM REM THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS REM "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT REM LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS REM FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REM COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, REM INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, REM BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; REM LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER REM CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRIC REM LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN REM ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE REM POSSIBILITY OF SUCH DAMAGE. REM REM $Id$ REM if "%PHPBIN%" == "" set PHPBIN=@php_bin@ if not exist "%PHPBIN%" if "%PHP_PEAR_PHP_BIN%" neq "" goto USE_PEAR_PATH GOTO RUN :USE_PEAR_PATH set PHPBIN=%PHP_PEAR_PHP_BIN% :RUN "%PHPBIN%" "@bin_dir@\pdepend" %*
drBenway/siteResearch
vendor/pdepend/pdepend/src/bin/pdepend_1.bat
bat
mit
1,927
@echo off bundler\SqlBundler.exe ..\..\..\..\ "db/PostgreSQL/1.x/1.0" false copy auth.sql auth-blank.sql del auth.sql copy auth-blank.sql ..\..\auth-blank.sql
mban94/frapid
src/Frapid.Web/Areas/Frapid.Authorization/db/PostgreSQL/1.x/1.0/rebundle-db-without-sample.bat
bat
apache-2.0
158
p d 1 d 2 p n p 1 +50M t b n p 2 p w
Larsjep/monoev3image
fdisk.cmd
bat
mit
40
@ECHO OFF xd2md.exe DNX.Helpers.Console\bin\Debug\DNX.Helpers.Console.XML > Reference\reference.md
martinsmith1968/DNX.Helpers.Console
GenerateMarkdown.cmd
bat
mit
100
@ECHO OFF pushd %~dp0 REM Command file for Sphinx documentation if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=sphinx-build ) set SOURCEDIR=source set BUILDDIR=build set SPHINXPROJ=aliyun-log-python-sdk 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.http://sphinx-doc.org/ exit /b 1 ) %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% goto end :help %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% :end popd
wjo1212/aliyun-log-python-sdk
doc/make.bat
bat
mit
829
@echo off cd .. rem Read the contents of PPYTHON_PATH into %PPYTHON_PATH%: set /P PPYTHON_PATH=<PPYTHON_PATH rem Get the user input: set /P ttiUsername="Username: " rem Export the environment variables: set ttiPassword=password set TTI_PLAYCOOKIE=%ttiUsername% set TTI_GAMESERVER=toontownfellowship.com:6199 echo =============================== echo Starting Toontown Fellowship... echo ppython: %PPYTHON_PATH% echo Username: %ttiUsername% echo Gameserver: %TTI_GAMESERVER% echo =============================== %PPYTHON_PATH% -m toontown.toonbase.ClientStart pause
Spiderlover/Toontown
win32/start_dev.bat
bat
mit
570
:: :: Windows CMD Script. :: :: Generates a file that contains the QuickCheck test data :: and the results for the property "prop_splitMerge" of ex. 10.22. :: :: Note: This script needs the input file "E'10'22.prop_splitMerge.cmd.txt", :: because it uses command redirection. :: :: Tested on Windows 8.1. :: @echo off cd .. ghci < "Tests\E'10'22.prop_splitMerge.cmd.txt" > "Tests\E'10'22.prop_splitMerge.verboseCheck.txt" echo. echo Press ENTER to exit ... pause >NUL exit
pascal-knodel/haskell-craft
Chapter 10/Tests/E'10'22.prop_splitMerge.windows.cmd
bat
mit
485
cmd_usr/initramfs_data.cpio := /bin/sh /home/lithium/kfhd/kernel/android-3.0/scripts/gen_initramfs_list.sh -o usr/initramfs_data.cpio -d
0xD34D/kernel_amazon_tate
usr/.initramfs_data.cpio.cmd
bat
gpl-2.0
139
cmd_networking/tcpudp.o := arm-linux-musleabihf-gcc -Wp,-MD,networking/.tcpudp.o.d -std=gnu99 -Iinclude -Ilibbb -include include/autoconf.h -D_GNU_SOURCE -DNDEBUG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D"BB_VER=KBUILD_STR(1.22.1)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wno-format-security -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -static-libgcc -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -fno-unwind-tables -fno-asynchronous-unwind-tables -g -O0 -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(tcpudp)" -D"KBUILD_MODNAME=KBUILD_STR(tcpudp)" -c -o networking/tcpudp.o networking/tcpudp.c deps_networking/tcpudp.o := \ networking/tcpudp.c \ include/libbb.h \ $(wildcard include/config/feature/shadowpasswds.h) \ $(wildcard include/config/use/bb/shadow.h) \ $(wildcard include/config/selinux.h) \ $(wildcard include/config/feature/utmp.h) \ $(wildcard include/config/locale/support.h) \ $(wildcard include/config/use/bb/pwd/grp.h) \ $(wildcard include/config/lfs.h) \ $(wildcard include/config/feature/buffers/go/on/stack.h) \ $(wildcard include/config/feature/buffers/go/in/bss.h) \ $(wildcard include/config/feature/ipv6.h) \ $(wildcard include/config/feature/seamless/xz.h) \ $(wildcard include/config/feature/seamless/lzma.h) \ $(wildcard include/config/feature/seamless/bz2.h) \ $(wildcard include/config/feature/seamless/gz.h) \ $(wildcard include/config/feature/seamless/z.h) \ $(wildcard include/config/feature/check/names.h) \ $(wildcard include/config/feature/prefer/applets.h) \ $(wildcard include/config/long/opts.h) \ $(wildcard include/config/feature/getopt/long.h) \ $(wildcard include/config/feature/pidfile.h) \ $(wildcard include/config/feature/syslog.h) \ $(wildcard include/config/feature/individual.h) \ $(wildcard include/config/echo.h) \ $(wildcard include/config/printf.h) \ $(wildcard include/config/test.h) \ $(wildcard include/config/kill.h) \ $(wildcard include/config/chown.h) \ $(wildcard include/config/ls.h) \ $(wildcard include/config/xxx.h) \ $(wildcard include/config/route.h) \ $(wildcard include/config/feature/hwib.h) \ $(wildcard include/config/desktop.h) \ $(wildcard include/config/feature/crond/d.h) \ $(wildcard include/config/use/bb/crypt.h) \ $(wildcard include/config/feature/adduser/to/group.h) \ $(wildcard include/config/feature/del/user/from/group.h) \ $(wildcard include/config/ioctl/hex2str/error.h) \ $(wildcard include/config/feature/editing.h) \ $(wildcard include/config/feature/editing/history.h) \ $(wildcard include/config/feature/editing/savehistory.h) \ $(wildcard include/config/feature/tab/completion.h) \ $(wildcard include/config/feature/username/completion.h) \ $(wildcard include/config/feature/editing/vi.h) \ $(wildcard include/config/feature/editing/save/on/exit.h) \ $(wildcard include/config/pmap.h) \ $(wildcard include/config/feature/show/threads.h) \ $(wildcard include/config/feature/ps/additional/columns.h) \ $(wildcard include/config/feature/topmem.h) \ $(wildcard include/config/feature/top/smp/process.h) \ $(wildcard include/config/killall.h) \ $(wildcard include/config/pgrep.h) \ $(wildcard include/config/pkill.h) \ $(wildcard include/config/pidof.h) \ $(wildcard include/config/sestatus.h) \ $(wildcard include/config/unicode/support.h) \ $(wildcard include/config/feature/mtab/support.h) \ $(wildcard include/config/feature/clean/up.h) \ $(wildcard include/config/feature/devfs.h) \ include/platform.h \ $(wildcard include/config/werror.h) \ $(wildcard include/config/big/endian.h) \ $(wildcard include/config/little/endian.h) \ $(wildcard include/config/nommu.h) \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/limits.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/features.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/limits.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/byteswap.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdint.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/alltypes.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/stdint.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/endian.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdbool.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/unistd.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/posix.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/ctype.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/dirent.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/errno.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/errno.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/fcntl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/fcntl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/inttypes.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/netdb.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/netinet/in.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/socket.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/socket.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/setjmp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/setjmp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/signal.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/signal.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdio.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdlib.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/alloca.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdarg.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stddef.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/string.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/strings.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/libgen.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/poll.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/ioctl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/ioctl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/mman.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/mman.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/stat.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/stat.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/time.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/select.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/types.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/sysmacros.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/wait.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/resource.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/resource.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/termios.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/termios.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/time.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/param.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/pwd.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/grp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/mntent.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/statfs.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/statvfs.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/statfs.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/utmp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/utmpx.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/locale.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/arpa/inet.h \ include/pwd_.h \ include/grp_.h \ include/shadow_.h \ include/xatonum.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/types.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/asm/types.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/asm-generic/int-ll64.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/asm/bitsperlong.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/asm-generic/bitsperlong.h \ $(wildcard include/config/64bit.h) \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/posix_types.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/stddef.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/asm/posix_types.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/asm-generic/posix_types.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/netfilter_ipv4.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/netfilter.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/sysctl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/kernel.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/linux/sysinfo.h \ networking/tcpudp_perhost.h \ networking/tcpudp.o: $(deps_networking/tcpudp.o) $(deps_networking/tcpudp.o):
ThinkIntegrate/busybox
networking/.tcpudp.o.cmd
bat
gpl-2.0
13,147
cmd_net/bluetooth/bnep/bnep.o := /home/peter/Downloads/android-ndk-r5b/toolchains/arm-eabi-4.4.0/prebuilt/linux-x86/bin/arm-eabi-ld -EL -r -o net/bluetooth/bnep/bnep.o net/bluetooth/bnep/core.o net/bluetooth/bnep/sock.o net/bluetooth/bnep/netdev.o
paxchristos/R800x-2.3.3-Kernel
net/bluetooth/bnep/.bnep.o.cmd
bat
gpl-2.0
252
echo off rem this file is part of installer for Notepad++ rem Copyright (C)2006 Don HO <[email protected]> rem rem This program is free software; you can redistribute it and/or rem modify it under the terms of the GNU General Public License rem as published by the Free Software Foundation; either rem version 2 of the License, or (at your option) any later version. rem rem This program 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 this program; if not, write to the Free Software rem Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. echo on if %SIGN% == 0 goto NoSign signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin\notepad++.exe If ErrorLevel 1 goto End signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin64\notepad++.exe If ErrorLevel 1 goto End signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin\SciLexer.dll If ErrorLevel 1 goto End signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin64\SciLexer.dll If ErrorLevel 1 goto End signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin\NppShell_06.dll If ErrorLevel 1 goto End signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin\NppShell64_06.dll If ErrorLevel 1 goto End signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin\updater\GUP.exe If ErrorLevel 1 goto End signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin64\updater\GUP.exe If ErrorLevel 1 goto End signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin\updater\libcurl.dll If ErrorLevel 1 goto End signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin64\updater\libcurl.dll If ErrorLevel 1 goto End signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin\plugins\NppExport.dll If ErrorLevel 1 goto End signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin\plugins\mimeTools.dll signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin64\plugins\mimeTools.dll If ErrorLevel 1 goto End signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin\plugins\NppConverter.dll signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin64\plugins\NppConverter.dll If ErrorLevel 1 goto End REM signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin\plugins\DSpellCheck.dll REM If ErrorLevel 1 goto End REM signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ ..\bin64\plugins\DSpellCheck.dll REM If ErrorLevel 1 goto End :NoSign rmdir /S /Q .\build mkdir .\build rem Notepad++ minimalist package rmdir /S /Q .\minimalist mkdir .\minimalist copy /Y ..\bin\license.txt .\minimalist\ If ErrorLevel 1 goto End copy /Y ..\bin\readme.txt .\minimalist\ If ErrorLevel 1 goto End copy /Y ..\bin\change.log .\minimalist\ If ErrorLevel 1 goto End copy /Y ..\src\langs.model.xml .\minimalist\ If ErrorLevel 1 goto End copy /Y ..\src\stylers.model.xml .\minimalist\ If ErrorLevel 1 goto End copy /Y ..\src\contextMenu.xml .\minimalist\ If ErrorLevel 1 goto End copy /Y ..\src\shortcuts.xml .\minimalist\ If ErrorLevel 1 goto End copy /Y ..\bin\doLocalConf.xml .\minimalist\ If ErrorLevel 1 goto End copy /Y ..\bin\"notepad++.exe" .\minimalist\ If ErrorLevel 1 goto End copy /Y ..\bin\SciLexer.dll .\minimalist\ If ErrorLevel 1 goto End rmdir /S /Q .\minimalist64 mkdir .\minimalist64 copy /Y ..\bin\license.txt .\minimalist64\ If ErrorLevel 1 goto End copy /Y ..\bin\readme.txt .\minimalist64\ If ErrorLevel 1 goto End copy /Y ..\bin\change.log .\minimalist64\ If ErrorLevel 1 goto End copy /Y ..\src\langs.model.xml .\minimalist64\ If ErrorLevel 1 goto End copy /Y ..\src\stylers.model.xml .\minimalist64\ If ErrorLevel 1 goto End copy /Y ..\src\contextMenu.xml .\minimalist64\ If ErrorLevel 1 goto End copy /Y ..\src\shortcuts.xml .\minimalist64\ If ErrorLevel 1 goto End copy /Y ..\bin\doLocalConf.xml .\minimalist64\ If ErrorLevel 1 goto End copy /Y ..\bin64\"notepad++.exe" .\minimalist64\ If ErrorLevel 1 goto End copy /Y ..\bin64\SciLexer.dll .\minimalist64\ If ErrorLevel 1 goto End rem Notepad++ Unicode package rmdir /S /Q .\zipped.package.release mkdir .\zipped.package.release mkdir .\zipped.package.release\updater mkdir .\zipped.package.release\localization mkdir .\zipped.package.release\themes mkdir .\zipped.package.release\plugins mkdir .\zipped.package.release\plugins\APIs mkdir .\zipped.package.release\plugins\Config mkdir .\zipped.package.release\plugins\doc rmdir /S /Q .\zipped.package.release64 mkdir .\zipped.package.release64 mkdir .\zipped.package.release64\updater mkdir .\zipped.package.release64\localization mkdir .\zipped.package.release64\themes mkdir .\zipped.package.release64\plugins mkdir .\zipped.package.release64\plugins\APIs mkdir .\zipped.package.release64\plugins\Config mkdir .\zipped.package.release64\plugins\doc rem 32 copy /Y ..\bin\license.txt .\zipped.package.release\ If ErrorLevel 1 goto End copy /Y ..\bin\readme.txt .\zipped.package.release\ If ErrorLevel 1 goto End copy /Y ..\bin\change.log .\zipped.package.release\ If ErrorLevel 1 goto End copy /Y ..\src\langs.model.xml .\zipped.package.release\ If ErrorLevel 1 goto End copy /Y ..\src\stylers.model.xml .\zipped.package.release\ If ErrorLevel 1 goto End copy /Y ..\src\contextMenu.xml .\zipped.package.release\ If ErrorLevel 1 goto End copy /Y ..\src\shortcuts.xml .\zipped.package.release\ If ErrorLevel 1 goto End copy /Y ..\src\functionList.xml .\zipped.package.release\ If ErrorLevel 1 goto End copy /Y ..\bin\doLocalConf.xml .\zipped.package.release\ If ErrorLevel 1 goto End copy /Y ..\bin\"notepad++.exe" .\zipped.package.release\ If ErrorLevel 1 goto End copy /Y ..\bin\SciLexer.dll .\zipped.package.release\ If ErrorLevel 1 goto End rem 64 copy /Y ..\bin\license.txt .\zipped.package.release64\ If ErrorLevel 1 goto End copy /Y ..\bin\readme.txt .\zipped.package.release64\ If ErrorLevel 1 goto End copy /Y ..\bin\change.log .\zipped.package.release64\ If ErrorLevel 1 goto End copy /Y ..\src\langs.model.xml .\zipped.package.release64\ If ErrorLevel 1 goto End copy /Y ..\src\stylers.model.xml .\zipped.package.release64\ If ErrorLevel 1 goto End copy /Y ..\src\contextMenu.xml .\zipped.package.release64\ If ErrorLevel 1 goto End copy /Y ..\src\shortcuts.xml .\zipped.package.release64\ If ErrorLevel 1 goto End copy /Y ..\src\functionList.xml .\zipped.package.release64\ If ErrorLevel 1 goto End copy /Y ..\bin\doLocalConf.xml .\zipped.package.release64\ If ErrorLevel 1 goto End copy /Y ..\bin64\"notepad++.exe" .\zipped.package.release64\ If ErrorLevel 1 goto End copy /Y ..\bin64\SciLexer.dll .\zipped.package.release64\ If ErrorLevel 1 goto End rem Plugins copy /Y "..\bin\plugins\NppExport.dll" .\zipped.package.release\plugins\ If ErrorLevel 1 goto End copy /Y "..\bin\plugins\mimeTools.dll" .\zipped.package.release\plugins\ If ErrorLevel 1 goto End copy /Y "..\bin\plugins\NppConverter.dll" .\zipped.package.release\plugins\ If ErrorLevel 1 goto End REM copy /Y "..\bin\plugins\DSpellCheck.dll" .\zipped.package.release\plugins\ REM If ErrorLevel 1 goto End REM mkdir .\zipped.package.release\plugins\Config\Hunspell REM If ErrorLevel 1 goto End REM copy /Y "..\bin\plugins\Config\Hunspell\en_US.aff" .\zipped.package.release\plugins\Config\Hunspell\ REM If ErrorLevel 1 goto End REM copy /Y "..\bin\plugins\Config\Hunspell\en_US.dic" .\zipped.package.release\plugins\Config\Hunspell\ REM If ErrorLevel 1 goto End copy /Y "..\bin64\plugins\mimeTools.dll" .\zipped.package.release64\plugins\ If ErrorLevel 1 goto End copy /Y "..\bin64\plugins\NppConverter.dll" .\zipped.package.release64\plugins\ If ErrorLevel 1 goto End REM copy /Y "..\bin64\plugins\DSpellCheck.dll" .\zipped.package.release64\plugins\ REM If ErrorLevel 1 goto End REM mkdir .\zipped.package.release64\plugins\Config\Hunspell REM If ErrorLevel 1 goto End REM copy /Y "..\bin64\plugins\Config\Hunspell\en_US.aff" .\zipped.package.release64\plugins\Config\Hunspell\ REM If ErrorLevel 1 goto End REM copy /Y "..\bin64\plugins\Config\Hunspell\en_US.dic" .\zipped.package.release64\plugins\Config\Hunspell\ REM If ErrorLevel 1 goto End rem localizations copy /Y ".\nativeLang\*.xml" .\zipped.package.release\localization\ If ErrorLevel 1 goto End copy /Y ".\nativeLang\*.xml" .\zipped.package.release64\localization\ If ErrorLevel 1 goto End rem files API copy /Y ".\APIs\*.xml" .\zipped.package.release\plugins\APIs\ If ErrorLevel 1 goto End copy /Y ".\APIs\*.xml" .\zipped.package.release64\plugins\APIs\ If ErrorLevel 1 goto End rem theme copy /Y ".\themes\*.xml" .\zipped.package.release\themes\ If ErrorLevel 1 goto End copy /Y ".\themes\*.xml" .\zipped.package.release64\themes\ If ErrorLevel 1 goto End "C:\Program Files\7-Zip\7z.exe" a -r .\build\npp.bin.minimalist.7z .\minimalist\* If ErrorLevel 1 goto End "C:\Program Files\7-Zip\7z.exe" a -r .\build\npp.bin.minimalist64.7z .\minimalist64\* If ErrorLevel 1 goto End "C:\Program Files\7-Zip\7z.exe" a -tzip -r .\build\npp.bin.zip .\zipped.package.release\* If ErrorLevel 1 goto End "C:\Program Files\7-Zip\7z.exe" a -r .\build\npp.bin.7z .\zipped.package.release\* If ErrorLevel 1 goto End rem IF EXIST "%PROGRAMFILES(X86)%" ("%PROGRAMFILES(x86)%\NSIS\Unicode\makensis.exe" nppSetup.nsi) ELSE ("%PROGRAMFILES%\NSIS\Unicode\makensis.exe" nppSetup.nsi) IF EXIST "%PROGRAMFILES(X86)%" ("%PROGRAMFILES(x86)%\NSIS\makensis.exe" nppSetup.nsi) ELSE ("%PROGRAMFILES%\NSIS\makensis.exe" nppSetup.nsi) IF EXIST "%PROGRAMFILES(X86)%" ("%PROGRAMFILES(x86)%\NSIS\makensis.exe" -DARCH64 nppSetup.nsi) ELSE ("%PROGRAMFILES%\NSIS\makensis.exe" -DARCH64 nppSetup.nsi) rem Notepad++ Unicode package rmdir /S /Q .\zipped.package.release rem "C:\Program Files\7-Zip\7z.exe" a -tzip -r .\build\npp.bin64.zip .\zipped.package.release64\* If ErrorLevel 1 goto End "C:\Program Files\7-Zip\7z.exe" a -r .\build\npp.bin64.7z .\zipped.package.release64\* If ErrorLevel 1 goto End rem set var locally in this batch file setlocal enableDelayedExpansion cd .\build\ for %%a in (npp.*.Installer.exe) do ( rem echo a = %%a set nppInstallerVar=%%a set nppInstallerVar64=!nppInstallerVar:Installer.exe=Installer.x64.exe! rem nppInstallerVar should be the version for exemple: 6.9 rem we put npp.6.9. + (bin.zip instead of Installer.exe) into var zipvar set zipvar=!nppInstallerVar:Installer.exe=bin.zip! set zipvar64=!nppInstallerVar:Installer.exe=bin.x64.zip! set 7zvar=!nppInstallerVar:Installer.exe=bin.7z! set 7zvar64=!nppInstallerVar:Installer.exe=bin.x64.7z! set 7zvarMin=!nppInstallerVar:Installer.exe=bin.minimalist.7z! set 7zvarMin64=!nppInstallerVar:Installer.exe=bin.minimalist.x64.7z! ) rem echo zipvar=!zipvar! rem echo zipvar64=!zipvar64! rem echo 7zvar=!7zvar! rem echo 7zvar64=!7zvar64! rem echo 7zvarMin=!7zvarMin! rem echo 7zvarMin64=!7zvarMin64! ren npp.bin.zip !zipvar! ren npp.bin64.zip !zipvar64! ren npp.bin.7z !7zvar! ren npp.bin64.7z !7zvar64! ren npp.bin.minimalist.7z !7zvarMin! ren npp.bin.minimalist64.7z !7zvarMin64! if %SIGN% == 0 goto NoSignInstaller signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++ Installer" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ !nppInstallerVar! If ErrorLevel 1 goto End signtool.exe sign /f %NPP_CERT% /p %NPP_CERT_PWD% /d "Notepad++ Installer" /du https://notepad-plus-plus.org/ /t http://timestamp.digicert.com/ !nppInstallerVar64! If ErrorLevel 1 goto End :NoSignInstaller cd .. endlocal :End
hrwatahiki/notepad-plus-plus
PowerEditor/installer/packageAll.bat
bat
gpl-2.0
13,242
cmd_sound/atmel/built-in.o := rm -f sound/atmel/built-in.o; /home/chiehyang/PandaBoard-LinuxKernel/gcc-linaro-arm-linux-gnueabihf-4.7-2013.03-20130313_linux/bin/arm-linux-gnueabihf-ar rcsD sound/atmel/built-in.o
domintech/PandaBoard-LinuxKernel
sound/atmel/.built-in.o.cmd
bat
gpl-2.0
213
cmd_drivers/md/built-in.o := /media/android_source/CyanogenMod/system/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/bin/arm-eabi-ld -EL -r -o drivers/md/built-in.o drivers/md/dm-mod.o drivers/md/dm-crypt.o
freebsdmax/gsmart1315_kernel
drivers/md/.built-in.o.cmd
bat
gpl-2.0
209
cmd_drivers/usb/gadget/usb_f_eem.o := /opt/freescale/usr/local/gcc-4.6.2-glibc-2.13-linaro-multilib-2011.12/fsl-linaro-toolchain/bin/arm-none-linux-gnueabi-ld -EL -r -o drivers/usb/gadget/usb_f_eem.o drivers/usb/gadget/f_eem.o
FEDEVEL/tmp-imx6-tiny-rex-linux
drivers/usb/gadget/.usb_f_eem.o.cmd
bat
gpl-2.0
231
cmd_drivers/scsi/arm/built-in.o := rm -f drivers/scsi/arm/built-in.o; /opt/freescale/usr/local/gcc-4.6.2-glibc-2.13-linaro-multilib-2011.12/fsl-linaro-toolchain/bin/arm-none-linux-gnueabi-ar rcsD drivers/scsi/arm/built-in.o
FEDEVEL/tmp-imx6-tiny-rex-linux
drivers/scsi/arm/.built-in.o.cmd
bat
gpl-2.0
225
@ECHO OFF rem T = Threads rem C = Core-multiplied, d.h. bei 8 Kernen gilt: rem 1C = 1 * 8 = 8 Threads rem 1.5C = 1.5 * 8 = 12 Threads rem o = offline mvn -DskipTests -T 1C -o %* wildfly:deploy-only pause
meto1012meto1012/swe-ss14
deploy.bat
bat
gpl-3.0
224
@ECHO OFF REM (C) 2010-2013 see Authors.txt REM REM This file is part of MPC-HC. REM REM MPC-HC 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; either version 3 of the License, or REM (at your option) any later version. REM REM MPC-HC 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 this program. If not, see <http://www.gnu.org/licenses/>. SETLOCAL PUSHD %~dp0 rem A simple script which demonstrates how to apply translated text to locale rc file. rem This is only an example. CALL "common.bat" perl IF %ERRORLEVEL% NEQ 0 GOTO END FOR %%i IN (*.rc) DO ( ECHO Patching file %%i perl.exe patch.pl -i text\%%i.txt %%i ECHO ---------------------- ) :END PAUSE ENDLOCAL EXIT /B
jeeb/mpc-hc
src/mpc-hc/mpcresources/patch.bat
bat
gpl-3.0
1,116
START PackageManager.exe GENCONFIG
bretambrose/CCGOnlinePublic
CCGOnline/Run/Tools/PackageManagerGenConfig.bat
bat
gpl-3.0
35
@IF EXIST "%~dp0\node.exe" ( "%~dp0\node.exe" "%~dp0\..\nativescript-dev-typescript\bin\ns-upgrade-tsconfig" %* ) ELSE ( @SETLOCAL @SET PATHEXT=%PATHEXT:;.JS;=;% node "%~dp0\..\nativescript-dev-typescript\bin\ns-upgrade-tsconfig" %* )
ner01/MobileAppTest
Groceries/node_modules/.bin/ns-upgrade-tsconfig.cmd
bat
gpl-3.0
244
@echo off REM The directory where Libresonic will create files. Make sure it is writable. set LIBRESONIC_HOME=c:\libresonic REM The host name or IP address on which to bind Libresonic. Only relevant if you have REM multiple network interfaces and want to make Libresonic available on only one of them. REM The default value 0.0.0.0 will bind Libresonic to all available network interfaces. set LIBRESONIC_HOST=0.0.0.0 REM The port on which Libresonic will listen for incoming HTTP traffic. set LIBRESONIC_PORT=4040 REM The port on which Libresonic will listen for incoming HTTPS traffic (0 to disable). set LIBRESONIC_HTTPS_PORT=0 REM The context path (i.e., the last part of the Libresonic URL). Typically "/" or "/libresonic". set LIBRESONIC_CONTEXT_PATH=/ REM The memory limit (max Java heap size) in megabytes. set MAX_MEMORY=150 java -Xmx%MAX_MEMORY%m -Dlibresonic.home=%LIBRESONIC_HOME% -Dlibresonic.host=%LIBRESONIC_HOST% -Dlibresonic.port=%LIBRESONIC_PORT% -Dlibresonic.httpsPort=%LIBRESONIC_HTTPS_PORT% -Dlibresonic.contextPath=%LIBRESONIC_CONTEXT_PATH% -jar libresonic-booter-jar-with-dependencies.jar
langera/libresonic
libresonic-booter/src/main/script/libresonic.bat
bat
gpl-3.0
1,131
@rem *------------------------------------------------------------------------* @rem * jsonHttp test. @rem *------------------------------------------------------------------------* @set ARGS=%1 %2 %3 %4 %5 %6 %7 %8 %9 @if "%OS%" == "Windows_NT" setlocal @echo off @cls @rem *------------------------------------------------------------------------* @rem * ƒVƒFƒ‹‹N“®Žž‚̃tƒHƒ‹ƒ_‚Ɉړ®. @rem *------------------------------------------------------------------------* @set SCRIPT=%~0 @for /f "delims=\ tokens=*" %%z in ("%SCRIPT%") do ( @set SCRIPT_CURRENT_DIR=%%~dpz ) @cd %SCRIPT_CURRENT_DIR% @rem *------------------------------------------------------------------------* @rem * JDKƒCƒ“ƒXƒg[ƒ‹æ. @rem * ¦ Ý’肵‚È‚¢ê‡‚͉½‚àŽw’肵‚È‚¢‚Å‚­‚¾‚³‚¢. @rem *------------------------------------------------------------------------* @set SET_JAVA_HOME= @rem *------------------------------------------------------------------------* @rem * ƒvƒƒWƒFƒNƒgƒfƒBƒŒƒNƒgƒŠÝ’è. @rem *------------------------------------------------------------------------* @set PROJ_DIR=.\ @rem *------------------------------------------------------------------------* @rem * JavaƒIƒvƒVƒ‡ƒ“. @rem *------------------------------------------------------------------------* @set OPT= @rem *------------------------------------------------------------------------* @rem * ‹N“®ƒvƒƒOƒ‰ƒ€ƒZƒbƒg. @rem *------------------------------------------------------------------------* @set EXEC_PACKAGE=com.maachang.jsonHttp.test.TestMain @rem *------------------------------------------------------------------------* @rem * ŠJŽnƒƒ‚ƒŠ—̈æ. @rem * ’PˆÊ‚ÍMByte @rem *------------------------------------------------------------------------* @set STM=256 @rem *------------------------------------------------------------------------* @rem * Å‘僁ƒ‚ƒŠ—̈æ. @rem * ’PˆÊ‚ÍMByte @rem *------------------------------------------------------------------------* @set EXM=256 @rem ########################################################################## @rem # ¦‚±‚êˆÈ‰º‚͐ݒ肵‚È‚¢‚Å‚­‚¾‚³‚¢. @rem ########################################################################## @rem * baseFolder. * @set BASE_HOME=%JSON_HTTP_HOME% @rem *------------------------------------------------------------------------* @rem * Ý’èðŒ”½‰f. @rem *------------------------------------------------------------------------* @if not "%SET_JAVA_HOME%" == "" @set JAVA_HOME=%SET_JAVA_HOME% @rem *------------------------------------------------------------------------* @rem * ‹N“®ƒoƒbƒ`ƒfƒBƒŒƒNƒgƒŠ. @rem *------------------------------------------------------------------------* @set BATCH_DIR=%BASE_HOME%\sh @rem *------------------------------------------------------------------------* @rem * ’è‹`ƒf[ƒ^Ši”[ƒfƒBƒŒƒNƒgƒŠ. @rem *------------------------------------------------------------------------* @set CONF_DIR=%PROJ_DIR%\conf @rem *------------------------------------------------------------------------* @rem * JARŠi”[ƒfƒBƒŒƒNƒgƒŠ. @rem *------------------------------------------------------------------------* @set LIB_DIR=%BASE_HOME%\lib @rem *------------------------------------------------------------------------* @rem * ƒGƒ‰[”»•Ê. @rem *------------------------------------------------------------------------* @if "%JAVA_HOME%" == "" goto errJAVA_HOME @if "%PROJ_DIR%" == "" goto errPROJ_DIR @rem *------------------------------------------------------------------------* @rem * execution java. @rem *------------------------------------------------------------------------* @call %BATCH_DIR%\core\parselib @set LIB_DIR=%PROJ_DIR%\jar @call %BATCH_DIR%\core\parselib @set CLASSPATH=.;%INST_LIB%;%CONF_DIR% @%JAVA_HOME%\bin\java -Xms%STM%m -Xmx%EXM%m %OPT% %EXEC_PACKAGE% %ARGS% goto end @rem *------------------------------------------------------------------------* @rem * ƒGƒ‰[ˆ—. @rem *------------------------------------------------------------------------* :errJAVA_HOME @echo ŠÂ‹«•ϐ” JAVA_HOME ‚ªÝ’肳‚ê‚Ä‚¢‚Ü‚¹‚ñ. goto end :errPROJ_DIR @echo ƒvƒƒWƒFƒNƒgƒfƒBƒŒƒNƒgƒŠ‚ª•s³‚Å‚·. goto end :end @if "%OS%" == "Windows_NT" endlocal
maachang/jsonHttp
bin/sh/jtest.cmd
bat
apache-2.0
4,125
c:\Python\Python34\python.exe setup.py bdist_msi > create_msi_3.4_x64.output.log 2>&1
FredHutch/swiftclient-gui
create_msi_3.4_x64.bat
bat
apache-2.0
87
@echo off set PAUSE_ERRORS=1 call bat\SetupSDK.bat call bat\SetupApplication.bat :menu echo. echo Package for target echo. echo Android: echo. echo [1] normal (apk) echo [2] debug (apk-debug) echo [3] normal-exp (apk-expansion) echo. echo iOS: echo. echo [4] fast test (ipa-test-interpreter) echo [5] fast debug (ipa-debug-interpreter) echo [6] slow test (ipa-test) echo [7] slow debug (ipa-debug) echo [8] "ad-hoc" (ipa-ad-hoc) echo [9] App Store (ipa-app-store) echo [10] App Store (ipa-app-store-deb) echo. :choice if "%1%" == "" ( set /P C=[Choice]: echo. ) else ( set C=%1 ) set PLATFORM=android set OPTIONS= if %C% GTR 3 set PLATFORM=ios if %C% GTR 7 set PLATFORM=ios-dist if "%C%"=="1" set TARGET=-captive-runtime if "%C%"=="2" set TARGET=-debug if "%C%"=="2" set OPTIONS=-connect %DEBUG_IP% if "%C%"=="3" set TARGET=-captive-runtime if "%C%"=="3" set APP_DIR=bin_android if "%C%"=="3" set FILE_OR_DIR=-C %APP_DIR% . if "%C%"=="4" set TARGET=-test-interpreter if "%C%"=="5" set TARGET=-debug-interpreter if "%C%"=="5" set OPTIONS=-connect %DEBUG_IP% if "%C%"=="6" set TARGET=-test if "%C%"=="7" set TARGET=-debug if "%C%"=="7" set OPTIONS=-connect %DEBUG_IP% if "%C%"=="8" set TARGET=-ad-hoc if "%C%"=="9" set TARGET=-app-store if "%C%"=="10" set TARGET=-app-store if "%C%"=="10" set OPTIONS=-sampler call bat\Packager.bat if "%PLATFORM%"=="android" goto android-package :ios-package if "%AUTO_INSTALL_IOS%" == "yes" goto ios-install echo Now manually install and start application on device echo. goto end :ios-install echo Installing application for testing on iOS (%DEBUG_IP%) echo. call adt -installApp -platform ios -package "%OUTPUT%" if errorlevel 1 goto installfail echo Now manually start application on device echo. goto end :android-package adb devices echo. echo Installing %OUTPUT% on the device... echo. adb -d install -r "%OUTPUT%" if errorlevel 1 goto installfail goto end :installfail echo. echo Installing the app on the device failed :end :: pause
bs90/AdMobAne
use_case_src/AdMobAneDemo/PackageApp.bat
bat
apache-2.0
2,132
@echo off set yy=%date:~-4% set dd=%date:~-7,2% set mm=%date:~-10,2% set MYDATE=%yy%_%mm%_%dd% REM - DEBUG LAUNCH -> c:\Windows\System32\cmd.exe /c start perl ProvidentAvp3.pl %CD%\%MYDATE%\ProvidentAvp_output.csv Provident c:\Windows\System32\cmd.exe /q /c start /min perl ProvidentAvp3.pl %CD%\%MYDATE%\ProvidentAvp_output.csv Provident
familymcqueens/ProvidentAvpXpress
ProvidentAvp2.bat
bat
apache-2.0
346
@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\pyJunosManager.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\pyJunosManager.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
JNPRAutomate/pyJunosManager
docs/make.bat
bat
apache-2.0
6,717
36T88-RT7C6-R38TQ-RV8M9-WWTCY
mgiljum/Windows-7-Pro-Activator
Activator/Certs/Dell/Starter A/OEM/slp.cmd
bat
mit
33
cmd_drivers/mtd/nand/built-in.o := /media/sagformas/47f72a56-be22-485d-ba83-da42e0d4eb18/fuentes/Samsung/TrendPlus/GT-S7580_JB_Opensource/rk-prebuilts/bin/arm-eabi-ld.bfd -EL -r -o drivers/mtd/nand/built-in.o drivers/mtd/nand/nand_ids.o
EPDCenter/android_kernel_archos_97_titan
drivers/mtd/nand/.built-in.o.cmd
bat
gpl-2.0
242
@echo off rem rem Copyright (c) 2001-2003, Jean Tessier rem All rights reserved. rem rem Redistribution and use in source and binary forms, with or without rem modification, are permitted provided that the following conditions rem are met: rem rem * Redistributions of source code must retain the above copyright rem notice, this list of conditions and the following disclaimer. rem rem * Redistributions in binary form must reproduce the above copyright rem notice, this list of conditions and the following disclaimer in the rem documentation and/or other materials provided with the distribution. rem rem * Neither the name of Jean Tessier nor the names of his contributors rem may be used to endorse or promote products derived from this software rem without specific prior written permission. rem rem THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS rem "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT rem LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR rem A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR rem CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, rem EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, rem PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR rem PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF rem LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING rem NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS rem SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. rem if not "%OS%"=="Windows_NT" goto win9xStart :winNTStart @setlocal rem %~dp0 is name of current script under NT set DEFAULT_DEPENDENCYFINDER_HOME=%~dp0 rem : operator works similar to make : operator set DEFAULT_DEPENDENCYFINDER_HOME=%DEFAULT_DEPENDENCYFINDER_HOME:\bin\=% if "%DEPENDENCYFINDER_HOME%"=="" set DEPENDENCYFINDER_HOME=%DEFAULT_DEPENDENCYFINDER_HOME% set DEFAULT_DEPENDENCYFINDER_HOME= rem On NT/2K grab all arguments at once set DEPENDENCYFINDER_CMD_LINE_ARGS=%* goto doneStart :win9xStart rem Slurp the command line arguments. This loop allows for an unlimited rem number of arguments (up to the command line limit, anyway). set DEPENDENCYFINDER_CMD_LINE_ARGS= :setupArgs if %1a==a goto doneStart set DEPENDENCYFINDER_CMD_LINE_ARGS=%DEPENDENCYFINDER_CMD_LINE_ARGS% %1 shift goto setupArgs :doneStart rem This label provides a place for the argument list loop to break out rem and for NT handling to skip to. "%JAVA_HOME%\bin\java" %DEPENDENCYFINDER_OPTS% -classpath "%DEPENDENCYFINDER_HOME%\classes;%DEPENDENCYFINDER_HOME%\lib\DependencyFinder.jar;%DEPENDENCYFINDER_HOME%\lib\log4j.jar;%DEPENDENCYFINDER_HOME%\lib\jakarta-oro.jar" com.jeantessier.dependencyfinder.cli.ClassList %DEPENDENCYFINDER_CMD_LINE_ARGS% if not "%OS%"=="Windows_NT" goto mainEnd :winNTend @endlocal :mainEnd
simeshev/parabuild-ci
3rdparty/depfind101/bin/ClassList.bat
bat
lgpl-3.0
2,960
@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. 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\GiniAPI.qhcp echo.To view the help file: echo.^> assistant -collectionFile %BUILDDIR%\qthelp\GiniAPI.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
gini/gini-sdk-android
ginisdk/src/doc/make.bat
bat
mit
6,470
@echo off REM Windows script for running karma unit tests set BASE_DIR=%~dp0 karma start "%BASE_DIR%\karma-unit.conf.js" %*
calvinl/ng-phonegap
test/test.bat
bat
mit
125
rem Run SEC Edgar Filer Manual (EFM) Conformance Suite tests @set TESTCASESINDEXFILE=http://sec.gov/info/edgar/ednews/efmtest/efm-19-120614.zip/efm-19-120614/conf/testcases.xml @set OUTPUTLOGFILE=c:\temp\EFM-test-log.txt @set OUTPUTCSVFILE=c:\temp\EFM-test-report.csv @set ARELLE=c:\Program Files\Arelle\arelleCmdLine.exe "%ARELLE%" --file "%TESTCASESINDEXFILE%" --disclosureSystem efm-pragmatic --validate --csvTestReport "%OUTPUTCSVFILE%" 1> "%OUTPUTLOGFILE%" 2>&1
sternshus/Arelle
arelle/scripts-windows/runEFMTests.bat
bat
apache-2.0
474
java -Xms4m -Xmx16m -Djava.library.path=../lib/sigar-bin/lib -cp ".;..\lib\*" com.redhat.reportengine.agent.AgentMain
Patzifist/report-engine
modules/agent/src/main/package/bin/re-agent.bat
bat
gpl-3.0
119
@echo OFF REM batch file for runinstalling the Calibre2Opds program. REM REM The checks for Java have been adapted from those used to REM start up the IzPack package builder and then extended. REM Hopefully this means that calibre2opds Java may run on REM some of those systems that do not have Java on the search REM path but do have the JAVA_HOME environment variable set; REM or have the expected registry keys set; or have installed REM to default location. :checkJava set _JAVAPROG=JAVAW.EXE REM See if JAVA_HOME specifies location of Java (prefered method) if not "%JAVA_HOME%" == "" ( if exist "%JAVA_HOME%\bin\%_JAVAPROG%" ( set _JAVACMD=%JAVA_HOME%\bin\%_JAVAPROG% goto run_c2o ) ) REM Check standard default 32-bit install locations if exist "%ProgramFiles%\Java\jre6\bin\%_JAVAPROG%" ( set _JAVACMD=%ProgramFiles%\Java\jre6\bin\%_JAVAPROG% goto run_c2o ) if exist "%ProgramFiles%\Java\jre7\bin\%JAVAPROG%" ( set _JAVACMD=%ProgramFiles%\Java\jre7\bin\%JAVAPROG% goto run_c2o ) REM Check standard default 64-bit install locations if exist "%ProgramFiles% (x86)\Java\jre6\bin\%_JAVAPROG%" ( set _JAVACMD="%ProgramFiles% (x86)\Java\jre6\bin\%_JAVAPROG%" goto run_c2o ) if exist "%ProgramFiles% (x86)\Java\jre7\bin\%_JAVAPROG%" ( set _JAVACMD="%ProgramFiles% (x86)\Java\jre7\bin\%_JAVAPROG%" goto run_c2o ) REM Now lets try and get a value for JAVA_HOME from the registry! REM Start by finding the version of the RTE FOR /F "tokens=3" %%A IN ('REG.EXE QUERY "HKLM\Software\JavaSoft\Java RunTime Environment" /v "CurrentVersion"') DO set _MYVAR1=%%A REM then where this version is installed FOR /F "tokens=3*" %%A IN ('REG.EXE QUERY "HKLM\Software\JavaSoft\Java RunTime Environment\%_MYVAR%" /v "JavaHome"') DO set _MYVAR2=%%A %%B if exist %_MYVAR2%\bin\%_JAVAPROG% { set _JAVACMD=%_MYVAR2%\bin\%_JAVAPROG% echo _JAVACMD=%_JAVACMD% goto run_c2o ) REM Now try finding the version of the JDK FOR /F "tokens=3" %%A IN ('REG.EXE QUERY "HKLM\Software\JavaSoft\Java Development Kit" /v "CurrentVersion"') DO set _MYVAR1=%%A REM then where this version is installed FOR /F "tokens=3*" %%A IN ('REG.EXE QUERY "HKLM\Software\JavaSoft\Java Development Kit\%_MYVAR%" /v "JavaHome"') DO set _MYVAR2=%%A %%B if exist %_MYVAR2%\bin\%_JAVAPROG% { set _JAVACMD=%_MYVAR2%\bin\%_JAVAPROG% echo _JAVACMD=%_JAVACMD% goto run_c2o ) echo ' echo ---------------------------------------------------------------------------- echo WARNING echo ' echo Unable to determine where the %JAVAPROG% program (which is part of Java) has echo been installed on your system. Java does not appear to have been installed echo in any of the default locations or using the standard registry keys. echo ' echo The recommended way to specify the location of Java is to set the JAVA_HOME echo environment variable. Normally the value of JAVA_HOME would be set to something echo like: echo JAVA_HOME=C:\Program Files\Java\jre6 echo although it could well vary on your system (particularily if you are running echo Windows 7 or if you have installed the Java Development Kit. Within that echo folder there should be a folder called 'bin' and the %_JAVAPROG% program will echo be located inside that. echo ' echo If you press ENTER then calibre2opds will hope that the %_JAVAPROG% program can echo found on the system search path and will continue on that basis. If you do not echo want to do this then use CTRL-C to abandon trying to start calibre2opds. echo ---------------------------------------------------------------------------- echo ' pause set _JAVACMD=%_JAVAPROG% :run_c2o REM We set stack limits explicitly here to get consistency across systems REM -Xms<value> define starting size REM -Xmx<value> defines maximum size REM -Xss<value> defines stack size REM It is possible that for very large libraries this may not be enough - we will have to see. REM If these options are omitted then defaults are chosen depending on system configuration START "Calibre2Opds" "%_JAVACMD%" -jar uninstaller.jar :end REM Clear down all the environment variables we used set _JAVACMD= set _JAVAPROG= set _C2O= set _MYVAR1= set _MYVAR2=
pabalexa/calibre2opds
script/uninstall.cmd
bat
gpl-3.0
4,313
@echo off setlocal if defined MSBUILDDEBUGONSTART_HARD goto build if not defined MSBUILDDEBUGONSTART goto build if %MSBUILDDEBUGONSTART% == 0 goto build set MSBUILDDEBUGONSTART= echo To debug the build, define a value for MSBUILDDEBUGONSTART_HARD. :build powershell -NoLogo -NoProfile -ExecutionPolicy ByPass -Command "& """%~dp0eng\common\build.ps1""" -build -restore %*" exit /b %ErrorLevel%
cdmihai/msbuild
build.cmd
bat
mit
394
echo "" > %FILENAME%
alien4cloud/alien4cloud-cloudify2-provider
src/test/resources/csars/test-types-1.0-SNAPSHOT/scripts/configure_comp_windows.bat
bat
apache-2.0
20
where detach quit
calee0219/Course
DLAB/Online_Test3/03_GATE/verdiLog/pes.bat
bat
mit
18
REM Copyright 2014 Steve Francia 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. @if not exist "%HOME%" @set HOME=%HOMEDRIVE%%HOMEPATH% @if not exist "%HOME%" @set HOME=%USERPROFILE% @set APP_DIR=%HOME%\.spf13-vim-3 IF NOT EXIST "%APP_DIR%" ( call git clone --recursive -b 3.0 https://github.com/spf13/spf13-vim.git "%APP_DIR%" ) ELSE ( @set ORIGINAL_DIR=%CD% echo updating spf13-vim chdir /d "%APP_DIR%" call git pull chdir /d "%ORIGINAL_DIR%" call cd "%APP_DIR%" ) call mklink "%HOME%\.vimrc" "%APP_DIR%\.vimrc" call mklink "%HOME%\_vimrc" "%APP_DIR%\.vimrc" call mklink "%HOME%\.vimrc.fork" "%APP_DIR%\.vimrc.fork" call mklink "%HOME%\.vimrc.bundles" "%APP_DIR%\.vimrc.bundles" call mklink "%HOME%\.vimrc.bundles.fork" "%APP_DIR%\.vimrc.bundles.fork" call mklink "%HOME%\.vimrc.before" "%APP_DIR%\.vimrc.before" call mklink "%HOME%\.vimrc.before.fork" "%APP_DIR%\.vimrc.before.fork" call mklink /J "%HOME%\.vim" "%APP_DIR%\.vim" IF NOT EXIST "%APP_DIR%\.vim\bundle" ( call mkdir "%APP_DIR%\.vim\bundle" ) IF NOT EXIST "%HOME%/.vim/bundle/vundle" ( call git clone https://github.com/gmarik/vundle.git "%HOME%/.vim/bundle/vundle" ) ELSE ( call cd "%HOME%/.vim/bundle/vundle" call git pull call cd %HOME% ) call vim -u "%APP_DIR%/.vimrc.bundles" +BundleInstall! +BundleClean +qall
msandroid/spf13-vim
spf13-vim-windows-install.cmd
bat
apache-2.0
1,870
@echo off REM // --------------------------------------------------------------------------------- REM // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. REM // REM // The MIT License (MIT) REM // REM // Permission is hereby granted, free of charge, to any person obtaining a copy REM // of this software and associated documentation files (the "Software"), to deal REM // in the Software without restriction, including without limitation the rights REM // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell REM // copies of the Software, and to permit persons to whom the Software is REM // furnished to do so, subject to the following conditions: REM // REM // The above copyright notice and this permission notice shall be included in REM // all copies or substantial portions of the Software. REM // REM // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR REM // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, REM // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE REM // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER REM // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, REM // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN REM // THE SOFTWARE. REM // --------------------------------------------------------------------------------- set puttydir="C:\software\PuTTY\" set prjdir=..\ set rpi_ip=10.121.204.204 set rpi_usr=pi set rpi_pw=raspberry echo Copying log files %puttydir%pscp %rpi_usr%@%rpi_ip%:/var/lib/mono/eventlog/Application/*.log ..\bin\release\logs\
jeffwilcox/connectthedots
Devices/Gateways/GatewayService/Scripts/RaspberryPi/GetLogFile.cmd
bat
mit
1,706
java -jar neutrino-assistant.jar
wh0/neutrino
Neutrino/neutrino-assistant.cmd
bat
mit
34
@echo off setlocal set PYTHONPATH=%PYTHONPATH%;%ProgramFiles(x86)%\Google\google_appengine;%~dp0\App set AUTH_DOMAIN=LibraryHippoAuthDomain py -2.7 -m pytest --looponfail %*
LibraryHippo/LibraryHippo
test.cmd
bat
mit
179
dotnet build src/sir.httpserver --configuration Release dotnet build src/sir --configuration Release
kreeben/resin
build.bat
bat
mit
101
set NODE_PATH=%USERPROFILE%\node_modules cd bin node Server.js pause
AxGord/Pony
socketTests/Server/bin/run.cmd
bat
mit
68
call npm install -g gulp call npm install gulp --save-dev call npm install gulp-concat --save-dev call npm install gulp-uglify --save-dev call npm install gulp-jslint --save-dev pause
robymes/WebApplicationTesting
Chapter 04-05/scripts/build/InstallOnlyBuild.bat
bat
mit
184
packages\FAKE\tools\Fake.exe build.fsx %*
PeteProgrammer/fspec
fake.cmd
bat
mit
42
%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\installutil.exe /u NPOIHelper.WinService.exe
644792799/NPOIHelper
NPOIHelper.WinService/Uninstall.bat
bat
mit
95
@echo off IF NOT DEFINED SPNG_PREREQS GOTO NOVARS call %WAS_ROOT%\bin\manageprofiles.bat -create -profileName %WAS_PROFILE_NAME% -profilePath "%WAS_ROOT%/profiles/%WAS_PROFILE_NAME%" -templatePath "%WAS_ROOT%/profileTemplates/default" -serverName %WAS_PROFILE_SERVER_NAME% -enableAdminSecurity true -adminUserName %WAS_ADMIN_USER% -adminPassword %WAS_ADMIN_PASSWORD% set USER_SEZ= set /P USER_SEZ=Start WAS for you [y/n]? if NOT "%USER_SEZ%" == "y" GOTO ABORT call startmywas GOTO DONE :NOVARS echo You have not set the required environment variables, please run setmywasvars.bat GOTO DONE :ABORT echo WAS not started. :DONE
millarde/wasadmin-automation
makemyprofile.bat
bat
mit
635
@echo off rem setlocal if "%1%" == "--set" goto SET if "%1%" == "--clean" goto CLEAN echo. echo Usage : echo "%0% [--set | --clean]" echo. goto EXIT rem ----------------------------------------------------------- :SET rem If winutils.exe is in D:/lib_repo/java/ext/winutils_github/hadoop-2.7.1/bin: rem set HADOOP_HOME=D:\util_portable\hadoop-3.0.3 set HADOOP_HOME=D:\lib_repo\java\ext\winutils_github\hadoop-2.7.1 set JAVA_HOME=D:\util_portable\jdk-12.0.2_windows-x64_bin\jdk-12.0.2 set MAVEN_HOME=D:\util_portable\build_tool\apache-maven-3.5.4 set ANT_HOME=D:\util_portable\build_tool\apache-ant-1.10.5 set SBT_HOME=D:\util_portable\build_tool\sbt-1.1.6\sbt set SPARK_HOME=D:\util_portable\spark-2.3.1-bin-hadoop2.7 set SAVED_PATH_FOR_SPARK=%PATH% rem set PATH=%SPARK_HOME%\bin;%SBT_HOME%\bin;%ANT_HOME%\bin;%MAVEN_HOME%\bin;%JAVA_HOME%\bin;%SystemRoot%\system32 set PATH=%SPARK_HOME%\bin;%HADOOP_HOME%\bin;%SBT_HOME%\bin;%ANT_HOME%\bin;%MAVEN_HOME%\bin;%JAVA_HOME%\bin;%PATH% goto EXIT rem ----------------------------------------------------------- :CLEAN set SPARK_HOME= set SBT_HOME= set MAVEN_HOME= set JAVA_HOME= set HADOOP_HOME= set PATH=%SAVED_PATH_FOR_SPARK% set SAVED_PATH_FOR_SPARK= rem ----------------------------------------------------------- :EXIT rem endlocal echo on
sangwook236/general-development-and-testing
sw_dev/java/set_spark.bat
bat
gpl-2.0
1,303
@echo off bin\TestMain-debug.exe pause
zweimal/HxNdll
Run.bat
bat
gpl-2.0
40
cmd_net/netfilter/built-in.o := /home/sunghun/arm-2009q3/bin/arm-none-linux-gnueabi-ld -EL -r -o net/netfilter/built-in.o net/netfilter/netfilter.o net/netfilter/nf_conntrack.o net/netfilter/x_tables.o net/netfilter/xt_tcpudp.o net/netfilter/xt_conntrack.o net/netfilter/xt_multiport.o net/netfilter/xt_state.o
sktjdgns1189/android_kernel_iriver_MX100
net/netfilter/.built-in.o.cmd
bat
gpl-2.0
316
"C:/Program Files (x86)/WiX Toolset v3.11\bin\heat.exe" dir ..\..\web -cg WEBResources -gg -out web.wxs -var var.WebSource "C:/Program Files (x86)/WiX Toolset v3.11\bin\heat.exe" dir ..\..\scripts -cg ScriptResources -gg -out scripts.wxs -var var.ScriptSource "C:/Program Files (x86)/WiX Toolset v3.11\bin\heat.exe" dir ..\..\op5\scripts -cg Op5ScriptResources -gg -out op5_scripts.wxs -var var.OP5ScriptSource "C:/Program Files (x86)/WiX Toolset v3.11\bin\heat.exe" dir ..\..\op5\config -cg Op5ConfigResources -gg -out op5_config.wxs -var var.OP5ConfigSource "C:/Program Files (x86)/WiX Toolset v3.11\bin\heat.exe" dir "C:\source\build\x64\dev\docs\html" -cg HTMLHelp -gg -out html_help.wxs -var var.WebHelpSource
mickem/nscp
installers/common/re-generate.bat
bat
gpl-2.0
715
cmd_drivers/media/video/gspca/built-in.o := rm -f drivers/media/video/gspca/built-in.o; /opt/freescale/usr/local/gcc-4.4.4-glibc-2.11.1-multilib-1.0/arm-fsl-linux-gnueabi/bin/arm-none-linux-gnueabi-ar rcsD drivers/media/video/gspca/built-in.o
evan6200/cirrfy_pos
drivers/media/video/gspca/.built-in.o.cmd
bat
gpl-2.0
244
/* * This file is maintained by a user: if you have any questions about it, * please contact Mark Hale ([email protected]). */ /* Convert PDF to PostScript. */ parse arg params gs='@gsos2' inext='.pdf' outext='.ps' if params='' then call usage options='-dNOPAUSE -dBATCH -P- -dSAFER -sDEVICE=ps2write' /* extract options from command line */ i=1 param=word(params,i) do while substr(param,1,1)='-' options=options param i=i+1 param=word(params,i) end infile=param if infile='' then call usage outfile=word(params,i+1) if outfile='' then do outfile=infile''outext infile=infile''inext end gs '-q -sOutputFile='outfile options infile exit usage: say 'Usage: pdf2ps [-dASCII85DecodePages=false] [-dLanguageLevel=n] input[.pdf output.ps]' exit
mfaber/quexf
software/gs/lib/pdf2ps.cmd
bat
gpl-2.0
761
@echo off Reg delete HKLM\SOFTWARE\notepad++ /v Flag /f goto %ERRORLEVEL% :1 echo Le logiciel Notepad++ n est pas installe exit 1 GOTO end :0 echo debut de la desinstallation cd \ cd "Program Files\Notepad++" chmod ugo+rwx * uninstall.exe /S cd .. chmod ugo+rwx "C:\Program Files\Notepad++" cd \ rmdir "\Program Files\Notepad++" /s /q echo Desinstallation terminee :end
cedricde/lrs
addons/lsc_deployment_scripts/Software_using_an_installer_NSIS/Office_Automation/Notepad++/desinstallnotepad++.bat
bat
gpl-2.0
408
cmd_drivers/net/ethernet/smsc/built-in.o := /opt/freescale/usr/local/gcc-4.6.2-glibc-2.13-linaro-multilib-2011.12/fsl-linaro-toolchain/bin/arm-none-linux-gnueabi-ld -EL -r -o drivers/net/ethernet/smsc/built-in.o drivers/net/ethernet/smsc/smc91x.o drivers/net/ethernet/smsc/smc911x.o drivers/net/ethernet/smsc/smsc911x.o
FEDEVEL/tmp-imx6-tiny-rex-linux
drivers/net/ethernet/smsc/.built-in.o.cmd
bat
gpl-2.0
325
go build -v -o lta.exe
AntonioSun/lta
build.bat
bat
gpl-2.0
23
cmd_libbb/bb_pwd.o := arm-linux-musleabihf-gcc -Wp,-MD,libbb/.bb_pwd.o.d -std=gnu99 -Iinclude -Ilibbb -include include/autoconf.h -D_GNU_SOURCE -DNDEBUG -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -D"BB_VER=KBUILD_STR(1.22.1)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prototypes -Wunused-function -Wunused-value -Wmissing-prototypes -Wmissing-declarations -Wno-format-security -Wdeclaration-after-statement -Wold-style-definition -fno-builtin-strlen -finline-limit=0 -fomit-frame-pointer -ffunction-sections -fdata-sections -fno-guess-branch-probability -funsigned-char -static-libgcc -falign-functions=1 -falign-jumps=1 -falign-labels=1 -falign-loops=1 -fno-unwind-tables -fno-asynchronous-unwind-tables -g -O0 -D"KBUILD_STR(s)=\#s" -D"KBUILD_BASENAME=KBUILD_STR(bb_pwd)" -D"KBUILD_MODNAME=KBUILD_STR(bb_pwd)" -c -o libbb/bb_pwd.o libbb/bb_pwd.c deps_libbb/bb_pwd.o := \ libbb/bb_pwd.c \ include/libbb.h \ $(wildcard include/config/feature/shadowpasswds.h) \ $(wildcard include/config/use/bb/shadow.h) \ $(wildcard include/config/selinux.h) \ $(wildcard include/config/feature/utmp.h) \ $(wildcard include/config/locale/support.h) \ $(wildcard include/config/use/bb/pwd/grp.h) \ $(wildcard include/config/lfs.h) \ $(wildcard include/config/feature/buffers/go/on/stack.h) \ $(wildcard include/config/feature/buffers/go/in/bss.h) \ $(wildcard include/config/feature/ipv6.h) \ $(wildcard include/config/feature/seamless/xz.h) \ $(wildcard include/config/feature/seamless/lzma.h) \ $(wildcard include/config/feature/seamless/bz2.h) \ $(wildcard include/config/feature/seamless/gz.h) \ $(wildcard include/config/feature/seamless/z.h) \ $(wildcard include/config/feature/check/names.h) \ $(wildcard include/config/feature/prefer/applets.h) \ $(wildcard include/config/long/opts.h) \ $(wildcard include/config/feature/getopt/long.h) \ $(wildcard include/config/feature/pidfile.h) \ $(wildcard include/config/feature/syslog.h) \ $(wildcard include/config/feature/individual.h) \ $(wildcard include/config/echo.h) \ $(wildcard include/config/printf.h) \ $(wildcard include/config/test.h) \ $(wildcard include/config/kill.h) \ $(wildcard include/config/chown.h) \ $(wildcard include/config/ls.h) \ $(wildcard include/config/xxx.h) \ $(wildcard include/config/route.h) \ $(wildcard include/config/feature/hwib.h) \ $(wildcard include/config/desktop.h) \ $(wildcard include/config/feature/crond/d.h) \ $(wildcard include/config/use/bb/crypt.h) \ $(wildcard include/config/feature/adduser/to/group.h) \ $(wildcard include/config/feature/del/user/from/group.h) \ $(wildcard include/config/ioctl/hex2str/error.h) \ $(wildcard include/config/feature/editing.h) \ $(wildcard include/config/feature/editing/history.h) \ $(wildcard include/config/feature/editing/savehistory.h) \ $(wildcard include/config/feature/tab/completion.h) \ $(wildcard include/config/feature/username/completion.h) \ $(wildcard include/config/feature/editing/vi.h) \ $(wildcard include/config/feature/editing/save/on/exit.h) \ $(wildcard include/config/pmap.h) \ $(wildcard include/config/feature/show/threads.h) \ $(wildcard include/config/feature/ps/additional/columns.h) \ $(wildcard include/config/feature/topmem.h) \ $(wildcard include/config/feature/top/smp/process.h) \ $(wildcard include/config/killall.h) \ $(wildcard include/config/pgrep.h) \ $(wildcard include/config/pkill.h) \ $(wildcard include/config/pidof.h) \ $(wildcard include/config/sestatus.h) \ $(wildcard include/config/unicode/support.h) \ $(wildcard include/config/feature/mtab/support.h) \ $(wildcard include/config/feature/clean/up.h) \ $(wildcard include/config/feature/devfs.h) \ include/platform.h \ $(wildcard include/config/werror.h) \ $(wildcard include/config/big/endian.h) \ $(wildcard include/config/little/endian.h) \ $(wildcard include/config/nommu.h) \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/limits.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/features.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/limits.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/byteswap.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdint.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/alltypes.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/stdint.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/endian.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdbool.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/unistd.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/posix.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/ctype.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/dirent.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/errno.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/errno.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/fcntl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/fcntl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/inttypes.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/netdb.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/netinet/in.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/socket.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/socket.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/setjmp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/setjmp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/signal.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/signal.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdio.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdlib.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/alloca.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stdarg.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/stddef.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/string.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/strings.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/libgen.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/poll.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/ioctl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/ioctl.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/mman.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/mman.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/stat.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/stat.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/time.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/select.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/types.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/sysmacros.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/wait.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/resource.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/resource.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/termios.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/termios.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/time.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/param.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/pwd.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/grp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/mntent.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/statfs.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/sys/statvfs.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/bits/statfs.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/utmp.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/utmpx.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/locale.h \ /Volumes/ELFSOSX/tools/lib/gcc/arm-linux-musleabihf/4.7.3/../../../../arm-linux-musleabihf/include/arpa/inet.h \ include/pwd_.h \ include/grp_.h \ include/shadow_.h \ include/xatonum.h \ libbb/bb_pwd.o: $(deps_libbb/bb_pwd.o) $(deps_libbb/bb_pwd.o):
ThinkIntegrate/busybox
libbb/.bb_pwd.o.cmd
bat
gpl-2.0
11,328
cmd_drivers/staging/fbtft/fb_ssd1331.ko := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -T ./scripts/module-common.lds --build-id -o drivers/staging/fbtft/fb_ssd1331.ko drivers/staging/fbtft/fb_ssd1331.o drivers/staging/fbtft/fb_ssd1331.mod.o
avareldalton85/rpi2-linux-rt
drivers/staging/fbtft/.fb_ssd1331.ko.cmd
bat
gpl-2.0
299
@echo off rem Batch file to start the import of a binary marc file for Solr indexing. rem rem VUFIND_HOME rem Path to the vufind installation rem SOLRMARC_HOME rem Path to the solrmarc installation rem JAVA_HOME rem Path to the java rem INDEX_OPTIONS rem Options to pass to the JVM rem Make sure that environment edits are local and that we have access to the rem Windows command extensions. setlocal enableextensions if not errorlevel 1 goto extensionsokay echo Unable to enable Windows command extensions. goto end :extensionsokay rem Save %0 for later in case the batch file's name gets shifted away set THISFILE=%0 rem ##################################################### rem # handle the -p option to override properties file rem ##################################################### if "%1"=="-p" ( set PROPERTIES_FILE=%2 shift shift ) rem ##################################################### rem # Make sure we have the expected number of arguments rem ##################################################### if not "!%1!"=="!!" goto argfound echo Usage: %THISFILE% [-p c:\path\to\import.properties] c:\path\to\marc.mrc goto end :argfound rem ################################################## rem # Set INDEX_OPTIONS rem # Tweak these in accordance to your needs rem # Xmx and Xms set the heap size for the Java Virtual Machine rem # You may also want to add the following: rem # -XX:+UseParallelGC rem # -XX:+AggressiveOpts rem ################################################## set INDEX_OPTIONS=-Xms512m -Xmx512m rem ################################################## rem # Set SOLRCORE rem ################################################## if not "!%SOLRCORE%!"=="!!" goto solrcorefound set SOLRCORE=biblio :solrcorefound rem ################################################## rem # Set SOLR_HOME rem ################################################## if not "!%VUFIND_HOME%!"=="!!" goto vufindhomefound rem VUFIND_HOME not set -- try to call vufind.bat to rem fix the problem before we give up completely if exist vufind.bat goto usevufindbat rem If vufind.bat doesn't exist, the user hasn't run the installer yet. echo ERROR: vufind.bat does not exist -- could not set up environment. echo Please run "php install.php" to correct this problem. goto end :usevufindbat call vufind > nul if not "!%VUFIND_HOME%!"=="!!" goto vufindhomefound echo You need to set the VUFIND_HOME environmental variable before running this script. goto end :vufindhomefound if "!%SOLR_HOME%!"=="!!" goto solrhomenotfound set EXTRA_SOLRMARC_SETTINGS=%EXTRA_SOLRMARC_SETTINGS% -Dsolr.path=%SOLR_HOME% -Dsolr.solr.home=%SOLR_HOME% -Dsolrmarc.solr.war.path=%SOLR_HOME%/jetty/webapps/solr.war :solrhomenotfound rem ################################################## rem # Set SOLRMARC_HOME rem ################################################## if "!%SOLRMARC_HOME%!"=="!!" goto solrmarchomenotfound set EXTRA_SOLRMARC_SETTINGS=%EXTRA_SOLRMARC_SETTINGS% -Dsolrmarc.path=%SOLRMARC_HOME% :solrmarchomenotfound rem ##################################################### rem # Build java command rem ##################################################### if not "!%JAVA_HOME%!"=="!!" goto javahomefound set JAVA=java goto javaset :javahomefound set JAVA="%JAVA_HOME%\bin\java" :javaset rem ################################################## rem # Set properties file if not already provided rem ################################################## if not "!%PROPERTIES_FILE%!"=="!!" goto propertiesfound if not exist %VUFIND_LOCAL_DIR%\import\import.properties goto nolocalproperties set PROPERTIES_FILE=%VUFIND_LOCAL_DIR%\import\import.properties goto propertiesfound :nolocalproperties set PROPERTIES_FILE=%VUFIND_HOME%\import\import.properties :propertiesfound rem ################################################## rem # Set Command Options rem ################################################## set JAR_FILE=%VUFIND_HOME%\import\SolrMarc.jar rem ##################################################### rem # Execute Importer rem ##################################################### set RUN_CMD=%JAVA% %INDEX_OPTIONS% -Duser.timezone=UTC -Dsolr.core.name=%SOLRCORE% %EXTRA_SOLRMARC_SETTINGS% -jar %JAR_FILE% %PROPERTIES_FILE% %1 echo Now Importing %1 ... echo %RUN_CMD% %RUN_CMD% :end rem We're all done -- close down the local environment. endlocal
clarkewd/VuFind
import-marc.bat
bat
gpl-2.0
4,375
cmd_drivers/atm/built-in.o := rm -f drivers/atm/built-in.o; ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ar rcsD drivers/atm/built-in.o
avareldalton85/rpi2-linux-rt
drivers/atm/.built-in.o.cmd
bat
gpl-2.0
181
cmd_arch/powerpc/kernel/vdso32/note.o := ppc_4xx-gcc -m32 -Wp,-MD,arch/powerpc/kernel/vdso32/.note.o.d -nostdinc -isystem /tools/dev/eldk/usr/bin/../lib/gcc/powerpc-linux/4.2.2/include -I/home/nlp3276/git/linux-2.6-xlnx/arch/powerpc/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -Iarch/powerpc -D__ASSEMBLY__ -Iarch/powerpc -Wa,-m405 -gdwarf-2 -D__VDSO32__ -s -c -o arch/powerpc/kernel/vdso32/note.o arch/powerpc/kernel/vdso32/note.S deps_arch/powerpc/kernel/vdso32/note.o := \ arch/powerpc/kernel/vdso32/note.S \ include/linux/uts.h \ include/linux/version.h \ arch/powerpc/kernel/vdso32/note.o: $(deps_arch/powerpc/kernel/vdso32/note.o) $(deps_arch/powerpc/kernel/vdso32/note.o):
mattkelly/linux-2.6-xlnx
arch/powerpc/kernel/vdso32/.note.o.cmd
bat
gpl-2.0
722
cmd_scripts/kconfig/conf.o := gcc -Wp,-MD,scripts/kconfig/.conf.o.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -DCURSES_LOC="<ncurses.h>" -DLOCALE -c -o scripts/kconfig/conf.o scripts/kconfig/conf.c source_scripts/kconfig/conf.o := scripts/kconfig/conf.c deps_scripts/kconfig/conf.o := \ $(wildcard include/config/.h) \ $(wildcard include/config/allconfig.h) \ $(wildcard include/config/nosilentupdate.h) \ /usr/include/locale.h \ /usr/include/features.h \ /usr/include/bits/predefs.h \ /usr/include/sys/cdefs.h \ /usr/include/bits/wordsize.h \ /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-32.h \ /usr/lib/gcc/i486-linux-gnu/4.4.3/include/stddef.h \ /usr/include/bits/locale.h \ /usr/include/xlocale.h \ /usr/include/ctype.h \ /usr/include/bits/types.h \ /usr/include/bits/typesizes.h \ /usr/include/endian.h \ /usr/include/bits/endian.h \ /usr/include/bits/byteswap.h \ /usr/include/stdio.h \ /usr/include/libio.h \ /usr/include/_G_config.h \ /usr/include/wchar.h \ /usr/lib/gcc/i486-linux-gnu/4.4.3/include/stdarg.h \ /usr/include/bits/stdio_lim.h \ /usr/include/bits/sys_errlist.h \ /usr/include/bits/stdio.h \ /usr/include/bits/stdio2.h \ /usr/include/stdlib.h \ /usr/include/sys/types.h \ /usr/include/time.h \ /usr/include/sys/select.h \ /usr/include/bits/select.h \ /usr/include/bits/sigset.h \ /usr/include/bits/time.h \ /usr/include/sys/sysmacros.h \ /usr/include/bits/pthreadtypes.h \ /usr/include/alloca.h \ /usr/include/bits/stdlib.h \ /usr/include/string.h \ /usr/include/bits/string.h \ /usr/include/bits/string2.h \ /usr/include/bits/string3.h \ /usr/include/unistd.h \ /usr/include/bits/posix_opt.h \ /usr/include/bits/confname.h \ /usr/include/getopt.h \ /usr/include/bits/unistd.h \ /usr/include/sys/stat.h \ /usr/include/bits/stat.h \ /usr/include/sys/time.h \ scripts/kconfig/lkc.h \ $(wildcard include/config/list.h) \ scripts/kconfig/expr.h \ /usr/lib/gcc/i486-linux-gnu/4.4.3/include/stdbool.h \ /usr/include/libintl.h \ scripts/kconfig/lkc_proto.h \ scripts/kconfig/conf.o: $(deps_scripts/kconfig/conf.o) $(deps_scripts/kconfig/conf.o):
Potin/linux-am33x-04.06.00.07
scripts/kconfig/.conf.o.cmd
bat
gpl-2.0
2,225
* XMPPVOX: XMPP client for DOSVOX. * Copyright (C) 2012 Rodolfo Henrique Carvalho * * This file is part of XMPPVOX. * * XMPPVOX is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * * ---------------------------------------------------------------------------- * Este script é parte do XMPPVOX. * Autores: * Neno Henrique Albernaz * Rodolfo Henrique Carvalho escreve "Iniciando o XMPPVOX" cor 15 fundo 0 tela limpa escreve "Digite sua conta" cor 14 le c cor 15 se c = "" escreve "Desistiu" desvia @fim fim se escreve "Digite sua senha" Lê Senha s se s = "" escreve "Desistiu" desvia @fim fim se tela limpa seja x "xmppvox.exe -j " concatena x c concatena x " -s " concatena x s cor 4 escreve "Aguarde" executa x& @loopBipa bipa espera 1 soma i 1 se i < 3 desvia @loopBipa *escreve "Ok" executa "papovox.exe"& @fim termina mudo
rhcarvalho/xmppvox
scripts/launch.cmd
bat
gpl-3.0
1,501
java -Xmx512M -jar jClust.jar
deric/clusteval-parent
clusteval-backend/testCaseRepository/programs/jClust/RUN.bat
bat
gpl-3.0
29
@echo off mpirun.exe -n 8 -t 24h OstrichMPI.exe
yetisir/MOUSE
Modules/OSTRICH/mpirun.bat
bat
gpl-3.0
47
set PIP=C:\Python27\pyinstaller-1.5.1\ rem python %PIP%Makespec.py --onefile --console --upx --tk --icon=retina.ico retina.py rem Tree('distinclude'), python %PIP%Build.py retina.spec
jromang/retina-old
make.bat
bat
gpl-3.0
186
echo off rem <h4>FeatureDomain:</h4> rem Collaboration rem <h4>FeatureDescription:</h4> rem run the app with rest-services rem <h4>Syntax:</h4> rem PROG rem <h4>Example:</h4> rem cd D:\public_projects\yaio\yaio rem sbin\start-yaioapp rem rem @package de.yaio rem @author Michael Schreiner <[email protected]> rem @category Collaboration rem @copyright Copyright (c) 2011-2014, Michael Schreiner rem @license http://mozilla.org/MPL/2.0/ Mozilla Public License 2.0 rem set pathes set YAIOSCRIPTPATH=%~dp0 set YAIOBASEPATH=%YAIOSCRIPTPATH% set BASEPATH=%YAIOBASEPATH% set YAIOCONFIGPATH=%YAIOSCRIPTPATH%..\config\ rem init config call %YAIOCONFIGPATH%\config-server.bat %YAIOSCRIPTPATH% set CMD=java %JAVAOPTIONS% -cp %CP% %PROG_APPPROPAGATOR% %CFG% echo "start-apppropagator: %CMD%" start %CMD% rem add --debug option to see the startprocess of spring-boot set CMD=java %JAVAOPTIONS% -cp %CP% %PROG_APP% %CFG% echo "start-plantumlserver: %CMD%" start %CMD%
das-praktische-schreinerlein/yaio-plantuml-service
sbin/start-plantumlserver.bat
bat
mpl-2.0
998
@echo off SET JARDIR=..\lib SET RLX_CP=..\test SET RLX_CP=%RLX_CP%;..\classes SET RLX_CP=%RLX_CP%;%JARDIR%\test\junit-4.11.jar SET RLX_CP=%RLX_CP%;%JARDIR%\slf4j-api-1.7.5.jar SET RLX_CP=%RLX_CP%;%JARDIR%\logback-core-1.0.13.jar REM SET RLX_CP=%RLX_CP%;%JARDIR%\logback-core-1.0.13.jar SET RLX_CP=%RLX_CP%;%JARDIR%\log4j-1.2.17.jar SET RLX_CP=%RLX_CP%;%JARDIR%\slf4j-log4j12-1.7.5.jar SET RLX_CP=%RLX_CP%;%JARDIR%\jdbc\postgresql\postgresql-9.3-1100-jdbc4.jar SET RLX_CP=%RLX_CP%;%JARDIR%\jdbc\mysql-connector-java\mysql-connector-java-5.1.27.jar SET RLX_CP=%RLX_CP%;%JARDIR%\jdbc\hsqldb\hsqldb-1.8.0.10.jar SET RLX_CP=%RLX_CP%;%JARDIR%\jdbc\mariadb-java-client\mariadb-java-client-bzr-trunk-20131123.jar @echo %1 java -cp %RLX_CP% junit.textui.TestRunner %1 if ERRORLEVEL 1 exit /B %ERRORLEVEL% @echo on
tjn/relaxe
script/run-test.bat
bat
agpl-3.0
811
:: ----FPGA TRust Zone Programmer----:: :: NOTE: Make sure FPGA is on and connected. Open a terminal and connect to FPGA with baud rate 9600; :: UART Settings: Baud Rate= 9600; Data Bits=8; Stop Bits=1; Parity=None; Handshake =None :: Start "capture log" before the bit file is programmed :: 1. Open command prompt from start menu :: 2. cd to location of the scripts :: 3. Run "download.cmd" command @echo off FOR %%A IN (program1.cmd, program2.cmd, program3.cmd, program4.cmd) DO ( START "" /wait /b "C:\Xilinx\14.7\ISE_DS\settings32.bat" impact -batch %%A PING 1.1.1.1 -n 1 -w 10000 >NUL echo Programmed %%A bitfile echo Sending output to UART Terminal DO NOT DISCONNECT CABLE OR FPGA FOR APPRX 5 MINS.... PING 1.1.1.1 -n 1 -w 50000 >NUL ) echo DONE...! Thats all folks..!
IamVNIE/FPGA-TrustFuzion
FPGA-TrustFuzion-IDPVMS/FPGA-TrustFuzion-IDPVMS-32Bit/Suite-A/download.cmd
bat
agpl-3.0
779
shift bcc -2- -v -x- -RT- -a -ml -N -d -w -Y -c %0 %1 %2 %3 %4 %5 %6 %7 %8 %9
dylancarlson/citplus
mkdbreg.bat
bat
unlicense
82
node-debug gulp
jnxyx/yun
debug.cmd
bat
mit
15
@ECHO OFF %LIBAROMA_ADB% forward tcp:5555 tcp:5555 %LIBAROMA_ADB% shell su -c mount -o rw,remount / %LIBAROMA_ADB% shell su -c mkdir /tmp %LIBAROMA_ADB% push libaroma_test /sdcard/ %LIBAROMA_ADB% shell su -c cp /sdcard/libaroma_test /tmp/ %LIBAROMA_ADB% shell su -c chmod 755 /tmp/libaroma_test %LIBAROMA_ADB% shell su -c killall gdbserver start %LIBAROMA_ADB% shell su -c "gdbserver :5555 /tmp/libaroma_test;sleep 2" %LIBAROMA_ADB% shell su -c killall -19 system_server %LIBAROMA_ADB% shell su -c killall -19 surfaceflinger %LIBAROMA_ADB% shell su -c sleep 1 sleep 1 %LIBAROMA_GDB% -ex="target remote :5555" -ex="continue" -ex="quit" ./libaroma_test %LIBAROMA_ADB% shell su -c sleep 1 %LIBAROMA_ADB% shell su -c killall -18 surfaceflinger %LIBAROMA_ADB% shell su -c killall -18 system_server pause
M1cha/libaroma
tools/win32/graphonly/deploy_gdb_android.bat
bat
apache-2.0
799
@echo off if DEFINED JAVA_HOME goto cont :err ECHO JAVA_HOME environment variable must be set! 1>&2 EXIT /B 1 :cont set SCRIPT_DIR=%~dp0 for %%I in ("%SCRIPT_DIR%..") do set IOT_HOME=%%~dpfI REM ***** JAVA options ***** if "%IOT_MIN_MEM%" == "" ( set IOT_MIN_MEM=${packaging.iotracah.heap.min} ) if "%IOT_MAX_MEM%" == "" ( set IOT_MAX_MEM=${packaging.iotracah.heap.max} ) if NOT "%IOT_HEAP_SIZE%" == "" ( set IOT_MIN_MEM=%IOT_HEAP_SIZE% set IOT_MAX_MEM=%IOT_HEAP_SIZE% ) REM min and max heap sizes should be set to the same value to avoid REM stop-the-world GC pauses during resize, and so that we can lock the REM heap in memory on startup to prevent any of it from being swapped REM out. set JAVA_OPTS=%JAVA_OPTS% -Xms%IOT_MIN_MEM% -Xmx%IOT_MAX_MEM% REM new generation if NOT "%IOT_HEAP_NEWSIZE%" == "" ( set JAVA_OPTS=%JAVA_OPTS% -Xmn%IOT_HEAP_NEWSIZE% ) REM max direct memory if NOT "%IOT_DIRECT_SIZE%" == "" ( set JAVA_OPTS=%JAVA_OPTS% -XX:MaxDirectMemorySize=%IOT_DIRECT_SIZE% ) REM set to headless, just in case set JAVA_OPTS=%JAVA_OPTS% -Djava.awt.headless=true REM Force the JVM to use IPv4 stack if NOT "%IOT_USE_IPV4%" == "" ( set JAVA_OPTS=%JAVA_OPTS% -Djava.net.preferIPv4Stack=true ) REM Add gc options. IOT_GC_OPTS is unsupported, for internal testing if "%IOT_GC_OPTS%" == "" ( set IOT_GC_OPTS=%IOT_GC_OPTS% -XX:+UseParNewGC set IOT_GC_OPTS=%IOT_GC_OPTS% -XX:+UseConcMarkSweepGC set IOT_GC_OPTS=%IOT_GC_OPTS% -XX:CMSInitiatingOccupancyFraction=75 set IOT_GC_OPTS=%IOT_GC_OPTS% -XX:+UseCMSInitiatingOccupancyOnly REM When running under Java 7 REM JAVA_OPTS=%JAVA_OPTS% -XX:+UseCondCardMark ) set JAVA_OPTS=%JAVA_OPTS%%IOT_GC_OPTS% if "%IOT_GC_LOG_FILE%" == "" goto nogclog :gclog set JAVA_OPTS=%JAVA_OPTS% -XX:+PrintGCDetails set JAVA_OPTS=%JAVA_OPTS% -XX:+PrintGCTimeStamps set JAVA_OPTS=%JAVA_OPTS% -XX:+PrintGCDateStamps set JAVA_OPTS=%JAVA_OPTS% -XX:+PrintClassHistogram set JAVA_OPTS=%JAVA_OPTS% -XX:+PrintTenuringDistribution set JAVA_OPTS=%JAVA_OPTS% -XX:+PrintGCApplicationStoppedTime set JAVA_OPTS=%JAVA_OPTS% -Xloggc:%IOT_GC_LOG_FILE% for %%F in ("%IOT_GC_LOG_FILE%") do set IOT_GC_LOG_FILE_DIRECTORY=%%~dpF if NOT EXIST "%IOT_GC_LOG_FILE_DIRECTORY%\." mkdir "%IOT_GC_LOG_FILE_DIRECTORY%" :nogclog REM Causes the JVM to dump its heap on OutOfMemory. set JAVA_OPTS=%JAVA_OPTS% -XX:+HeapDumpOnOutOfMemoryError REM The path to the heap dump location, note directory must exists and have enough REM space for a full heap dump. REM JAVA_OPTS=%JAVA_OPTS% -XX:HeapDumpPath=$IOT_HOME/logs/heapdump.hprof REM Disables explicit GC set JAVA_OPTS=%JAVA_OPTS% -XX:+DisableExplicitGC REM Ensure UTF-8 encoding by default (e.g. filenames) set JAVA_OPTS=%JAVA_OPTS% -Dfile.encoding=UTF-8 REM Use our provided JNA always versus the system one set JAVA_OPTS=%JAVA_OPTS% -Djna.nosys=true REM check in case a user was using this mechanism if "%IOT_CLASSPATH%" == "" ( set IOT_CLASSPATH=%IOT_HOME%/lib/${project.build.finalName}.jar;%IOT_HOME%/lib/* ) else ( ECHO Error: Don't modify the classpath with IOT_CLASSPATH, Best is to add 1>&2 ECHO additional elements via the plugin mechanism, or if code must really be 1>&2 ECHO added to the main classpath, add jars to lib\, unsupported 1>&2 EXIT /B 1 ) set IOT_PARAMS=-Diotracah -Diotracah-foreground=yes -Diotracah.path.home="%IOT_HOME%"
caricah/iotracah
distribution/src/resources/bin/iotracah.in.bat
bat
apache-2.0
3,314
define srv1 irc.clan-dk.org:7701 define srv1name irc.clan-dk.org define srv2 irc.clan-dk.org:7711 define srv2name irc2.clan-dk.org define srvx srvx.clan-dk.org define domain troilus.org define chanserv AlphaIRC define global AlphaIRC define memoserv AlphaIRC define nickserv AlphaIRC define opserv AlphaIRC define helpserv CoverageServ define helpserv2 C0v3r4g3S3rv define opernick test_oper define operpass i_r_teh_0p3r define testchan #testchan # Connect, join testing channel, oper up, log in connect cl1 test1 test1 %srv1% :Test Bot 1 :cl1 join %testchan%1 :cl1 raw :OPER %opernick% %operpass% :cl1 privmsg %nickserv% :ACCOUNTINFO :cl1 privmsg %nickserv%@%srvx% :AUTH :cl1 privmsg %nickserv%@%srvx% :AUTH bogus bogus :cl1 privmsg %nickserv%@%srvx% :AUTH testest :cl1 privmsg %nickserv% :OSET test1 EPITHET some damn test bot :cl1 privmsg %nickserv% :ACCOUNTINFO # Test common infrastructure things :cl1 nick test1_new :cl1 nick test1 :cl1 privmsg %opserv% :REHASH :cl1 privmsg %opserv% :REOPEN :cl1 privmsg %opserv% :QUERY :cl1 privmsg %opserv% :LOG LIMIT 30 :cl1 privmsg %opserv% :RECONNECT :cl1 privmsg %opserv% :HELP WRITE :cl1 privmsg %opserv% :WRITE MONDO :cl1 privmsg %opserv% :WRITEALL :cl1 privmsg %opserv% :STATS DATABASES # Test global's functionality :cl1 privmsg %global% :NOTICE users Hello world! :cl1 privmsg %global% :MESSAGE TARGET users DURATION 1h TEXT Hello world (short duration)! connect cl2 test2 test2 %srv1% :Test Bot 2 connect cl3 test3 test3 %srv1% :Test Bot 3 :cl2 join %testchan%1 :cl2 privmsg %nickserv%@%srvx% :REGISTER test2 testest :cl2 privmsg %global% :LIST :cl3 join %testchan%1 :cl3 privmsg %global% :MESSAGES :cl3 privmsg %global% :VERSION :cl1 wait cl2,cl3 :cl1 privmsg %global% :REMOVE 1 :cl1 privmsg %global% :MESSAGE SOURCELESS pizza TARGET all TARGET helpers TARGET opers TARGET staff TARGET channels DURATION 5s TEXT Hollow world (very short duration). :cl1 privmsg %global% :MESSAGE TARGET all :cl1 privmsg %global% :NOTICE ANNOUNCEMENT test of announcement code :cl1 privmsg %global% :NOTICE CHANNELS test of channel spamming code (sorry! :) :cl1 privmsg %global% :NOTICE BOGUS :cl1 privmsg %global% :NOTICE DIFFERENTLY BOGUS :cl1 privmsg %global% :LIST :cl1 privmsg %global% :REMOVE 30 :cl1 privmsg %global% :MESSAGES # Test ChanServ functions :cl1 privmsg %chanserv% :HELP :cl1 privmsg %chanserv% :HELP commands :cl1 privmsg %chanserv% :HELP note types :cl1 privmsg %chanserv% :VERSION ARCH :cl1 privmsg %chanserv% :NETINFO :cl1 privmsg %chanserv% :STAFF :cl1 privmsg %chanserv% :GOD ON :cl1 privmsg %chanserv% :REGISTER %testchan%1 :cl1 privmsg %chanserv% :REGISTER %testchan%2 test2 :cl1 privmsg %chanserv% :GOD OFF :cl1 privmsg %chanserv% :ADDUSER %testchan%1 OP test2 :cl1 privmsg %chanserv% :GOD ON :cl1 privmsg %testchan%1 :PING :cl1 privmsg %chanserv% :CREATENOTE url setter all 400 :cl1 privmsg %chanserv% :%testchan%1 NOTE url http://www.srvx.net/index.php :cl1 privmsg %chanserv% :CREATENOTE url privileged 1 privileged 20 :cl1 privmsg %chanserv% :CREATENOTE url channel owner channel_users 20 :cl1 privmsg %chanserv% :CREATENOTE url bogus all 20 :cl1 privmsg %chanserv% :%testchan%1 NOTE :cl1 privmsg %chanserv% :REMOVENOTE url :cl2 wait cl1 :cl2 privmsg %chanserv% :%testchan%1 NOTE :cl1 privmsg %chanserv% :REMOVENOTE bogus :cl1 privmsg %chanserv% :%testchan%1 DELNOTE bogus :cl1 privmsg %chanserv% :%testchan%1 DELNOTE url :cl1 privmsg %chanserv% :%testchan%1 NOTE url http://www.srvx.net/ :cl1 wait cl2 :cl1 privmsg %chanserv% :REMOVENOTE url FORCE :cl1 privmsg %chanserv% :%testchan%1 ADDUSER OP test2 :cl1 privmsg %chanserv% :%testchan%1 OP test2 :cl1 privmsg %chanserv% :%testchan%1 OP test3 :cl2 wait cl1 :cl2 mode %testchan%1 -clo test3 :cl1 privmsg %chanserv% :%testchan%1 SET MODES +sntlrcCDk 500 bah :cl1 privmsg %chanserv% :%testchan%1 SET MODES -lk :cl1 privmsg %chanserv% :%testchan%1 SET ENFMODES 4 :cl1 privmsg %chanserv% :%testchan%1 SET PROTECT 0 :cl2 wait cl1 :cl2 mode %testchan%1 +l 600 :cl1 wait cl2 :cl1 privmsg %chanserv% :%testchan%1 SET CTCPUSERS 6 :cl3 wait cl1 :cl3 privmsg %testchan%1 :TIME :cl1 privmsg %chanserv% :EXPIRE :cl2 privmsg %chanserv% :%testchan%1 DELETEME a5bfa227 :cl1 privmsg %chanserv% :NOREGISTER *test2 USUX :cl1 privmsg %chanserv% :NOREGISTER %testchan%3 USUX2 :cl1 privmsg %chanserv% :NOREGISTER #*tch* USUX3 :cl1 privmsg %chanserv% :NOREGISTER %testchan%3 :cl1 privmsg %chanserv% :NOREGISTER *test2 :cl1 privmsg %chanserv% :NOREGISTER *test194 :cl1 privmsg %chanserv% :NOREGISTER :cl1 privmsg %chanserv% :REGISTER %testchan%3 test2 :cl1 privmsg %chanserv% :ALLOWREGISTER :cl1 privmsg %chanserv% :ALLOWREGISTER *test2 :cl1 privmsg %chanserv% :REGISTER %testchan%3 test2 :cl1 privmsg %chanserv% :ALLOWREGISTER %testchan%3 :cl1 privmsg %chanserv% :REGISTER %testchan%3 test2 :cl1 privmsg %chanserv% :ALLOWREGISTER #*tch* :cl1 join %testchan%3 :cl1 privmsg %opserv% :ADDBAD %testchan%3 :cl1 privmsg %chanserv% :REGISTER %testchan%3 test2 :cl1 privmsg %opserv% :CHANINFO %testchan%3 :cl1 privmsg %chanserv% :%testchan%1 MOVE %testchan%3 :cl1 join %testchan%3 :cl1 privmsg %opserv% :DELBAD %testchan%3 :cl1 privmsg %opserv% :ADDBAD %testchan%4 :cl1 privmsg %chanserv% :REGISTER %testchan%4 test2 :cl1 privmsg %chanserv% :%testchan%1 MOVE %testchan%4 :cl1 privmsg %opserv% :DELBAD %testchan%4 :cl1 privmsg %chanserv% :REGISTER %testchan%3 test2 :cl1 privmsg %chanserv% :ALLOWREGISTER #pizza :cl2 wait cl1 :cl2 privmsg %chanserv% :%testchan%3 OPCHAN :cl1 wait cl2 :cl1 privmsg %chanserv% :%testchan%3 CSUSPEND 1m H8! :cl2 wait cl1 :cl2 privmsg %chanserv% :%testchan%3 UNREGISTER 1234a2ec :cl2 privmsg %chanserv% :%testchan%3 OPCHAN :cl2 privmsg %chanserv% :%testchan%1 UNREGISTER :cl1 wait cl2 :cl1 privmsg %chanserv% :%testchan%3 CUNSUSPEND :cl2 wait cl1 :cl2 privmsg %chanserv% :%testchan%3 UNREGISTER :cl2 privmsg %chanserv% :%testchan%3 OPCHAN :cl2 privmsg %chanserv% :%testchan%3 UNREGISTER 1234a2ec :cl1 join %testchan%4 :cl1 privmsg %chanserv% :%testchan%4 UNREGISTER :cl1 privmsg %chanserv% :%testchan%2 MOVE %testchan%4 :cl1 privmsg %chanserv% :%testchan%4 MERGE %testchan%1 :cl1 privmsg %chanserv% :%testchan%1 OPCHAN :cl1 privmsg %chanserv% :%testchan%1 CLVL test2 bogus :cl1 privmsg %chanserv% :%testchan%1 CLVL test2 COOWNER :cl1 privmsg %chanserv% :%testchan%1 DELUSER COOWNER test2 :cl1 privmsg %chanserv% :%testchan%1 MDELOP * :cl1 privmsg %chanserv% :%testchan%1 TRIM BANS 1w :cl1 privmsg %chanserv% :%testchan%1 TRIM USERS 1w :cl1 privmsg %chanserv% :%testchan%1 DOWN :cl1 privmsg %chanserv% :%testchan%1 UP :cl1 privmsg %chanserv% :UPALL :cl1 privmsg %chanserv% :DOWNALL :cl1 privmsg %chanserv% :%testchan%1 OP test1 :cl1 privmsg %chanserv% :%testchan%1 OP test2 :cl1 privmsg %chanserv% :%testchan%1 DEOP test2 :cl1 privmsg %chanserv% :%testchan%1 VOICE test2 :cl1 privmsg %chanserv% :%testchan%1 DEVOICE test2 :cl1 privmsg %chanserv% :%testchan%1 ADDTIMEDBAN test2 30s WEH8U :cl1 privmsg %chanserv% :%testchan%1 BANS :cl1 privmsg %chanserv% :%testchan%1 UNBAN test3 :cl1 privmsg %chanserv% :%testchan%1 DELBAN test2 :cl1 mode %testchan%1 +bbb [email protected] [email protected] [email protected] :cl1 mode %testchan%1 +bbb [email protected] [email protected] [email protected] :cl1 mode %testchan%1 +bbb [email protected] [email protected] [email protected] :cl1 privmsg %chanserv% :%testchan%1 ADDTIMEDBAN [email protected] 15s :cl1 privmsg %chanserv% :%testchan%1 UNBANALL :cl1 privmsg %chanserv% :%testchan%1 OPEN :cl1 privmsg %chanserv% :%testchan%1 ACCESS test2 :cl1 privmsg %chanserv% :%testchan%1 ACCESS test1 :cl1 privmsg %chanserv% :%testchan%1 USERS :cl1 privmsg %chanserv% :%testchan%1 CSUSPEND 1w WEH8URCHAN :cl1 privmsg %chanserv% :%testchan%1 INFO :cl1 privmsg %chanserv% :%testchan%1 CUNSUSPEND :cl1 privmsg %chanserv% :%testchan%1 PEEK :cl1 privmsg %chanserv% :%testchan%1 SETINFO Wraa! :cl1 privmsg %chanserv% :%testchan%1 ADDUSER MASTER test2 :cl2 wait cl1 :cl2 privmsg %chanserv% :%testchan%1 SETINFO Arrr! :cl1 privmsg %chanserv% :%testchan%1 WIPEINFO test2 :cl1 privmsg %chanserv% :%testchan%1 SEEN test2 :cl2 privmsg %chanserv% :%testchan%1 NAMES :cl1 privmsg %chanserv% :%testchan%1 EVENTS :cl1 privmsg %chanserv% :%testchan%1 SAY Hi :cl1 privmsg %chanserv% :%testchan%1 EMOTE burps. :cl1 privmsg %chanserv% :CSEARCH PRINT LIMIT 20 :cl1 privmsg %chanserv% :UNVISITED :cl1 privmsg %chanserv% :%testchan%1 SET DEFAULTTOPIC foo bar baz :cl1 privmsg %chanserv% :%testchan%1 SET TOPICMASK foo * baz :cl1 privmsg %chanserv% :%testchan%1 SET ENFTOPIC 5 :cl1 privmsg %chanserv% :%testchan%1 SET GREETING Hello non-user! :cl1 privmsg %chanserv% :%testchan%1 SET USERGREETING Hello user! :cl1 privmsg %chanserv% :%testchan%1 SET PUBCMD 6 :cl1 privmsg %chanserv% :%testchan%1 SET STRICTOP 5 :cl1 privmsg %chanserv% :%testchan%1 SET AUTOOP 4 :cl1 privmsg %chanserv% :%testchan%1 SET PROTECT 0 :cl1 privmsg %chanserv% :%testchan%1 SET TOYS 0 :cl1 privmsg %chanserv% :%testchan%1 SET SETTERS 2 :cl1 privmsg %chanserv% :%testchan%1 SET TOPICREFRESH 1 :cl1 privmsg %chanserv% :%testchan%1 SET VOICE OFF :cl1 privmsg %chanserv% :%testchan%1 SET USERINFO ON :cl1 privmsg %chanserv% :%testchan%1 SET DYNLIMIT ON :cl1 privmsg %chanserv% :%testchan%1 SET TOPICSNARF OFF :cl1 privmsg %chanserv% :%testchan%1 SET PEONINVITE OFF :cl1 privmsg %chanserv% :%testchan%1 SET NODELETE ON :cl1 privmsg %chanserv% :%testchan%1 SET DYNLIMIT OFF :cl1 privmsg %chanserv% :%testchan%1 SET MODES +nt :cl1 raw :MODE %testchan%1 +bb [email protected] [email protected] :cl1 raw :MODE %testchan%1 -plkb 500 bah [email protected] :cl1 raw :MODE %testchan%1 +plkntDrcC 500 bah :cl1 raw :CLEARMODE %testchan%1 :cl1 raw :OPMODE %testchan%1 +oo %chanserv% test1 :cl1 raw :GLINE [email protected] * 3600 :We don't like Examplians. :cl1 raw :GLINE [email protected] * 3600 :We like you again :cl1 privmsg %chanserv% :%testchan%1 UNREGISTER :cl1 privmsg %chanserv% :%testchan%1 TOPIC blah blah blah :cl1 privmsg %chanserv% :%testchan%1 DEOP %chanserv% :cl1 raw :KICK %testchan%1 test2 :cl1 raw :TOPIC %testchan%1 :Topic set by test1 :cl1 privmsg %testchan%1 :goodbye # Test raw protocol functionality :cl1 raw :STATS u %srvx% :cl1 raw :STATS c %srvx% :cl1 raw :VERSION %srvx% :cl1 raw :ADMIN %srvx% :cl1 raw :WHOIS %nickserv% %nickserv% :cl1 join 0 :cl1 raw :AWAY :doing stuff :cl1 raw :AWAY :cl1 raw :MODE test1 +iwsdh :cl1 raw :KILL test3 :die, foo :cl1 raw :MODE test1 -oiwsdh # Test gline functions :cl1 raw :OPER %opernick% %operpass% :cl1 privmsg %opserv% :gline [email protected] 1h Test gline 1 :cl1 privmsg %opserv% :gline [email protected] 1m Test gline 2 :cl1 privmsg %opserv% :gline [email protected] 1h Test gline 2 (updated) :cl1 privmsg %opserv% :gline [email protected] 10 Very short gline :cl1 privmsg %opserv% :refreshg %srv1name% :cl1 privmsg %opserv% :refreshg :cl1 privmsg %opserv% :stats glines :cl1 privmsg %opserv% :gtrace print mask *@* limit 5 issuer test1 reason * :cl1 privmsg %opserv% :gtrace count mask *@* limit 5 issuer test1 reason * :cl1 privmsg %opserv% :gtrace ungline mask *@b.com :cl1 privmsg %opserv% :gtrace break mask *@b.com :cl1 privmsg %opserv% :trace print ip 66.0.0.0/8 mask *!*@* limit 5 :cl1 privmsg %opserv% :trace print ip 66.* :cl1 mode %testchan%1 +b [email protected] :cl1 privmsg %opserv% :%testchan%1 BAN def :cl1 privmsg %opserv% :%testchan%1 BAN *!*@def.ghi.com # Test modcmd functions :cl1 privmsg %chanserv% :%testchan%1 :cl1 privmsg %opserv% :TIMECMD BIND %opserv% gumbo *modcmd.bind %opserv% $1- $$ :cl1 privmsg %opserv% :HELP gumbo :cl1 privmsg %opserv% :gumbo gumbo gumbo :cl1 privmsg %opserv% :MODCMD gumbo FLAGS gumbo :cl1 privmsg %opserv% :MODCMD gumbo FLAGS +gumbo :cl1 privmsg %opserv% :MODCMD gumbo FLAGS +disabled,-oper CHANNEL_LEVEL none :cl1 privmsg %opserv% :MODCMD gumbo OPER_LEVEL 1001 :cl1 privmsg %opserv% :MODCMD gumbo ACCOUNT_FLAGS +g WEIGHT 0 :cl1 privmsg %opserv% :MODCMD gumbo bogus options :cl1 privmsg %opserv% :UNBIND %opserv% gumbo :cl1 privmsg %opserv% :TIMECMD BIND %opserv% gumbo %opserv%.bind %opserv% $1- :cl1 privmsg %opserv% :UNBIND %opserv% gumbo :cl1 privmsg %opserv% :STATS :cl1 privmsg %opserv% :STATS MODULES :cl1 privmsg %opserv% :STATS MODULES MODCMD :cl1 privmsg %opserv% :STATS SERVICES :cl1 privmsg %opserv% :STATS SERVICES %opserv% :cl1 privmsg %opserv% :READHELP OpServ :cl1 privmsg %opserv% :SHOWCOMMANDS :cl1 privmsg %opserv% :HELPFILES %opserv% :cl1 privmsg %chanserv% :COMMAND REGISTER # Test HelpServ functions connect cl3 test3 test3 %srv1% :Test Bot 3 :cl1 privmsg %opserv% :HELPSERV REGISTER %helpserv% %testchan%1 test1 :cl1 privmsg %helpserv% :huh? :cl1 privmsg %helpserv% :ADDHELPER test2 :cl1 privmsg %helpserv% :CLVL test2 pizzaboy :cl1 privmsg %helpserv% :DELUSER test2 :cl1 privmsg %helpserv% :DELUSER testy :cl1 privmsg %helpserv% :SET PAGETARGET %testchan%1 :cl1 privmsg %helpserv% :SET PAGETYPE NOTICE :cl1 privmsg %helpserv% :SET ALERTPAGETARGET %testchan%1 :cl1 privmsg %helpserv% :SET ALERTPAGETYPE PRIVMSG :cl1 privmsg %helpserv% :SET STATUSPAGETARGET %testchan%1 :cl1 privmsg %helpserv% :SET STATUSPAGETYPE ONOTICE :cl1 privmsg %helpserv% :SET GREETING Hello Earthling! Please talk to me! :cl1 privmsg %helpserv% :SET REQOPENED Your request has been accepted! :cl1 privmsg %helpserv% :SET REQASSIGNED Your request has been assigned to a helper! :cl1 privmsg %helpserv% :SET REQCLOSED Goodbye and leave us alone next time! :cl1 privmsg %helpserv% :SET IDLEDELAY 5m :cl1 privmsg %helpserv% :SET WHINEDELAY 3m :cl1 privmsg %helpserv% :SET WHINEINTERVAL 3m :cl1 privmsg %helpserv% :SET EMPTYINTERVAL 3m :cl1 privmsg %helpserv% :SET STALEDELAY 5m :cl1 privmsg %helpserv% :SET REQPERSIST PART :cl1 privmsg %helpserv% :SET HELPERPERSIST CLOSE :cl1 privmsg %helpserv% :SET NOTIFICATION ACCOUNTCHANGES :cl1 privmsg %helpserv% :SET REQMAXLEN 5 :cl1 privmsg %helpserv% :SET IDWRAP 10 :cl1 privmsg %helpserv% :SET REQONJOIN ON :cl1 privmsg %helpserv% :SET AUTOVOICE ON :cl1 privmsg %helpserv% :SET AUTODEVOICE ON :cl1 privmsg %helpserv% :SET :cl1 privmsg %helpserv% :LIST ALL :cl3 wait cl1 :cl3 join %testchan%1 :cl3 privmsg %helpserv% :eye kant auth 2 my acount test2 plz 2 help! :cl1 wait cl3 :cl1 privmsg %helpserv% :LIST :cl1 privmsg %helpserv% :LIST ASSIGNED :cl1 privmsg %helpserv% :STATS :cl1 privmsg %helpserv% :STATS test1 :cl1 privmsg %helpserv% :NEXT :cl1 privmsg %helpserv% :NEXT :cl1 privmsg %helpserv% :PICKUP test3 :cl1 privmsg %helpserv% :LIST ASSIGNED :cl1 privmsg %helpserv% :LIST UNASSIGNED :cl1 privmsg %helpserv% :LIST ALL :cl1 privmsg %helpserv% :LIST PIZZA :cl1 privmsg %nickserv% :ALLOWAUTH test3 test5 :cl1 privmsg %nickserv% :ALLOWAUTH test3 test2 :cl1 privmsg %nickserv% :ALLOWAUTH test3 :cl1 privmsg %nickserv% :ALLOWAUTH test3 test2 :cl3 wait cl1 :cl3 nick test4 :cl3 privmsg %nickserv%@%srvx% :AUTH test2 tested :cl3 nick test3 :cl1 wait cl3 :cl1 privmsg %nickserv% :ALLOWAUTH test3 test2 :cl1 privmsg %helpserv% :REASSIGN test3 test1 :cl3 wait cl1 :cl3 privmsg %nickserv%@%srvx% :AUTH test2 testest :cl3 privmsg %helpserv% :THX IT WORX NOW!! :cl1 wait cl3 :cl1 privmsg %helpserv% :LIST ME :cl1 privmsg %helpserv% :ADDNOTE george this guy is a tool :cl1 privmsg %helpserv% :ADDNOTE test2 this should be the first note that works :cl1 privmsg %helpserv% :ADDNOTE *test2 this guy is a tool :cl1 privmsg %helpserv% :CLOSE 2 :cl1 privmsg %helpserv% :SHOW 1 :cl1 privmsg %helpserv% :CLOSE test3 :cl1 privmsg %opserv% :RECONNECT :cl1 sleep 20 :cl1 privmsg %helpserv% :HELP :cl1 privmsg %helpserv% :HELP COMMANDS :cl1 privmsg %helpserv% :HELP BOTS :cl1 privmsg %helpserv% :BOTS :cl1 privmsg %nickserv% :SET BOGUS :cl1 privmsg %nickserv% :SET STYLE DEF :cl1 privmsg %helpserv% :HELPERS :cl1 privmsg %nickserv% :SET STYLE ZOOT :cl1 privmsg %helpserv% :HELPERS :cl1 privmsg %helpserv% :VERSION CVS :cl1 privmsg %helpserv% :PAGE and i-----i'm calling all you angels :cl1 privmsg %helpserv% :STATSREPORT :cl1 part %testchan%1 :cl1 privmsg %opserv% :HELPSERV :cl1 privmsg %opserv% :HELPSERV BOGUS :cl1 privmsg %opserv% :HELPSERV PICKUP :cl1 privmsg %opserv% :HELPSERV READHELP :cl1 privmsg %opserv% :HELPSERV BOTS :cl1 privmsg %opserv% :HELPSERV STATS %helpserv% :cl1 privmsg %opserv% :HELPSERV STATS %helpserv% test1 :cl1 privmsg %opserv% :HELPSERV MOVE %helpserv% %helpserv2% :cl1 privmsg %opserv% :HELPSERV UNREGISTER %helpserv2% # Test NickServ functions :cl1 privmsg %nickserv% :STATUS :cl1 privmsg %nickserv% :VERSION :cl1 privmsg %nickserv% :HELP COMMANDS :cl1 privmsg %nickserv% :ADDMASK :cl1 privmsg %nickserv% :ADDMASK *!**foo@**.bar.com :cl1 privmsg %nickserv% :ADDMASK **foo@**.bar.com :cl1 privmsg %nickserv% :OADDMASK test1 *!**foo@**.bar.com :cl1 privmsg %nickserv% :ODELMASK test1 *!**foo@**.bar.com :cl1 privmsg %nickserv% :DELMASK **foo@**.bar.com :cl1 privmsg %nickserv% :DELMASK *@*.%domain% :cl1 privmsg %nickserv% :SEARCH PRINT HOSTMASK :cl1 privmsg %nickserv% :SEARCH PRINT HOSTMASK EXACT *foo@*.bar.com LIMIT 5 REGISTERED >=1m # cannot test with email since it breaks profiling.. argh :cl3 privmsg %nickserv%@%srvx% :REGISTER test3 bleh :cl1 wait cl3 :cl1 privmsg %nickserv% :OUNREGISTER *bleh :cl1 privmsg %nickserv%@%srvx% :OREGISTER test4 bleh *@* test3 :cl1 privmsg %nickserv%@%srvx% :OREGISTER test4 bleh test3@bar :cl1 privmsg %nickserv% :ACCOUNTINFO test3 :cl1 privmsg %nickserv% :ACCOUNTINFO test3bcd :cl1 privmsg %nickserv% :USERINFO test3 :cl1 privmsg %nickserv% :NICKINFO test3 :cl1 privmsg %nickserv% :OSET test3 :cl1 privmsg %nickserv% :OSET jobaba :cl1 privmsg %nickserv% :OSET test3 BOGUS :cl1 privmsg %nickserv% :OSET test3 FLAGS +f :cl1 privmsg %nickserv% :RENAME test4 test3 :cl3 wait cl1 :cl3 privmsg %nickserv%@%srvx% :REGISTER test3 bleh :cl3 privmsg %nickserv%@%srvx% :AUTH bleh :cl1 wait cl3 :cl1 privmsg %nickserv% :ALLOWAUTH test3 test2 :cl3 wait cl1 :cl3 nick test4 :cl3 privmsg %nickserv% :REGNICK :cl3 nick test3 :cl3 privmsg %nickserv%@%srvx% :REGISTER test3 bleh :cl3 privmsg %nickserv%@%srvx% :AUTH bleh :cl3 privmsg %nickserv%@%srvx% :PASS bleh blargh :cl3 privmsg %nickserv%@%srvx% :ADDMASK *@foo.%domain% :cl3 privmsg %nickserv%@%srvx% :DELMASK *@foo.%domain% :cl3 privmsg %nickserv%@%srvx% :SET :cl3 privmsg %nickserv%@%srvx% :SET MAXLOGINS 1 :cl3 privmsg %nickserv%@%srvx% :RECLAIM test3 :cl3 privmsg %nickserv%@%srvx% :UNREGNICK test3 :cl3 privmsg %nickserv%@%srvx% :UNREGISTER bleach :cl1 wait cl3 :cl3 quit :cl1 sleep 5 :cl1 privmsg %nickserv% :RENAME *test4 test3 :cl1 privmsg %nickserv% :OSET *test3 INFO hi hi hi! :cl1 privmsg %nickserv% :OSET *test3 WIDTH 1 :cl1 privmsg %nickserv% :OSET *test3 WIDTH 80 :cl1 privmsg %nickserv% :OSET *test3 WIDTH 1000 :cl1 privmsg %nickserv% :OSET *test3 TABLEWIDTH 1 :cl1 privmsg %nickserv% :OSET *test3 TABLEWIDTH 80 :cl1 privmsg %nickserv% :OSET *test3 TABLEWIDTH 1000 :cl1 privmsg %nickserv% :OSET *test3 COLOR OFF :cl1 privmsg %nickserv% :OSET *test3 COLOR ON :cl1 privmsg %nickserv% :OSET *test3 COLOR TV :cl1 privmsg %nickserv% :OSET *test3 PRIVMSG ON :cl1 privmsg %nickserv% :OSET *test3 PRIVMSG OFF :cl1 privmsg %nickserv% :OSET *test3 PRIVMSG IGNORED :cl1 privmsg %nickserv% :OSET *test3 ANNOUNCEMENTS ON :cl1 privmsg %nickserv% :OSET *test3 ANNOUNCEMENTS OFF :cl1 privmsg %nickserv% :OSET *test3 ANNOUNCEMENTS ? :cl1 privmsg %nickserv% :OSET *test3 ANNOUNCEMENTS ARE NOT SPAM :cl1 privmsg %nickserv% :OSET *test3 PASSWORD whocares? :cl1 privmsg %nickserv% :ACCOUNTINFO *test3 :cl1 privmsg %nickserv% :OSET *test3 INFO * :cl1 privmsg %nickserv% :OREGISTER test4 bleh *@* :cl1 privmsg %nickserv% :OREGISTER test4@bogus bleh *@* :cl1 privmsg %nickserv% :OREGNICK *test3 test3a :cl1 privmsg %nickserv% :OREGNICK *test3 test3b :cl1 privmsg %nickserv% :OREGNICK *test3 test3c :cl1 privmsg %nickserv% :OUNREGNICK test3c :cl1 privmsg %nickserv% :OUNREGNICK test3b :cl1 privmsg %nickserv% :OUNREGNICK test3a :cl1 privmsg %chanserv% :REGISTER %testchan%2 *test2 :cl1 privmsg %chanserv% :REGISTER %testchan%3 *test3 :cl1 privmsg %chanserv% :%testchan%2 ADDUSER COOWNER *test3 :cl1 privmsg %chanserv% :%testchan%3 ADDUSER COOWNER *test2 :cl1 privmsg %chanserv% :%testchan%1 ADDUSER COOWNER *test3 :cl1 privmsg %chanserv% :%testchan%1 ADDUSER COOWNER *test2 :cl1 privmsg %nickserv% :MERGE *test3 *test2 :cl1 privmsg %nickserv% :SET STYLE DEF :cl1 privmsg %chanserv% :%testchan%1 USERS :cl1 privmsg %chanserv% :%testchan%2 USERS :cl1 privmsg %chanserv% :%testchan%3 USERS :cl1 privmsg %nickserv% :ACCOUNTINFO *test2 :cl1 privmsg %nickserv% :OSET *test2 MAXLOGINS 100 :cl1 privmsg %nickserv% :OSET *test2 MAXLOGINS 1 :cl1 privmsg %nickserv% :OSET *test2 LEVEL 999 :cl1 privmsg %nickserv% :OSET *test2 LEVEL 998 connect cl3 test3 test3 %srv1% :Test Bot 3 :cl1 sleep 6 :cl3 wait cl1 :cl3 privmsg %nickserv%@%srvx% :AUTH test2 testest :cl3 privmsg %nickserv% :VACATION :cl2 wait cl3 :cl2 privmsg %nickserv% :GHOST test3 :cl3 sleep 3 :cl3 quit # Test OpServ functions :cl1 privmsg %opserv% :ACCESS :cl1 privmsg %opserv% :ACCESS * :cl1 privmsg %opserv% :CHANINFO %testchan%1 :cl1 privmsg %opserv% :WHOIS test1 :cl1 privmsg %opserv% :INVITEME :cl1 privmsg %opserv% :JOIN %testchan%1 :cl1 privmsg %opserv% :PART %testchan%1 :cl1 privmsg %opserv% :STATS BAD :cl1 privmsg %opserv% :STATS GLINES :cl1 privmsg %opserv% :STATS LINKS :cl1 privmsg %opserv% :STATS MAX :cl1 privmsg %opserv% :STATS NETWORK :cl1 privmsg %opserv% :STATS NETWORK2 :cl1 privmsg %opserv% :STATS RESERVED :cl1 privmsg %opserv% :STATS TRUSTED :cl1 privmsg %opserv% :STATS UPLINK :cl1 privmsg %opserv% :STATS UPTIME :cl1 privmsg %opserv% :STATS ALERTS :cl1 privmsg %opserv% :STATS GAGS :cl1 privmsg %opserv% :STATS TIMEQ :cl1 privmsg %opserv% :STATS WARN :cl1 privmsg %opserv% :VERSION :cl1 privmsg %opserv% :HELP COMMANDS :cl1 privmsg %opserv% :HELP USER :cl1 privmsg %opserv% :TRACE DOMAINS DEPTH 2 :cl1 privmsg %opserv% :TRACE COUNT LIMIT 3 :cl1 privmsg %opserv% :TRACE HULA-HOOP LIMIT 3 :cl1 privmsg %opserv% :CSEARCH PRINT NAME * TOPIC * USERS <3 TIMESTAMP >0 LIMIT 5 :cl1 privmsg %opserv% :CSEARCH COUNT NAME * TOPIC * USERS <3 TIMESTAMP >0 LIMIT 5 :cl1 privmsg %opserv% :WARN %testchan%4 quiche eaters live here :cl1 privmsg %opserv% :STATS WARN :cl1 join %testchan%4 :cl1 privmsg %opserv% :UNWARN %testchan%4 :cl1 mode %testchan%4 +bbbsnt [email protected] [email protected] c!a.b.net :cl1 privmsg %opserv% :CLEARBANS %testchan%4 :cl1 privmsg %opserv% :CLEARMODES %testchan%4 :cl1 privmsg %opserv% :DEOP %testchan%4 test1 :cl1 privmsg %opserv% :OP %testchan%4 test1 :cl1 privmsg %opserv% :DEOPALL %testchan%4 :cl1 privmsg %opserv% :VOICEALL %testchan%4 :cl1 privmsg %opserv% :OPALL %testchan%4 :cl1 privmsg %opserv% :JUPE crap.tacular.net 4095 Craptacular Jupe Server :cl1 privmsg %opserv% :UNJUPE crap.tacular.net :cl1 privmsg %opserv% :JUMP clan-dk :cl1 privmsg %opserv% :GLINE pizza 1y Pizza is not allowed on this network :cl1 privmsg %opserv% :GLINE *@* 1w GO AWAY I HATE THE WORLD :cl1 privmsg %opserv% :GLINE [email protected] 0 Fat-laden freak :cl1 privmsg %opserv% :GLINE [email protected] 1m Testing G-line removal :cl1 privmsg %opserv% :UNGLINE [email protected] 1m Testing G-line removal :cl1 privmsg %opserv% :UNGLINE [email protected] 1m Testing G-line removal :cl1 privmsg %opserv% :REFRESHG pizza.thehut.com :cl1 privmsg %opserv% :GSYNC %srv1name%.illegal :cl1 privmsg %opserv% :GSYNC :cl1 privmsg %opserv% :WHOIS test1 :cl1 privmsg %opserv% :JOIN pizza.thehut.com :cl1 privmsg %opserv% :JOIN %testchan%4 :cl1 privmsg %opserv% :JOIN %testchan%4 :cl1 privmsg %opserv% :KICK %testchan%4 test1 :cl1 join %testchan%4 :cl1 privmsg %opserv% :KICKALL %testchan%4 :cl1 join %testchan%4 :cl1 privmsg %opserv% :KICKBAN %testchan%4 test1 :cl1 privmsg %opserv% :PART %testchan%4 hahah u r banned :cl1 join %testchan%4 :cl1 privmsg %opserv% :MODE %testchan%4 +snti :cl1 privmsg %opserv% :NICKBAN %testchan%4 test1 :cl1 privmsg %opserv% :UNBAN %testchan%4 *!*@*.%domain% :cl1 privmsg %opserv% :KICKBANALL %testchan%4 :cl1 part %testchan%4 :cl1 privmsg %opserv% :COLLIDE test3 foo bar.com nick jupe :cl1 privmsg %opserv% :UNRESERVE test3 :cl1 privmsg %opserv% :RESERVE test3 foo bar.com nick jupe 2 :cl1 privmsg %opserv% :UNRESERVE test3 :cl1 privmsg %opserv% :ADDBAD %testchan%4abc :cl1 privmsg %opserv% :ADDBAD %testchan%4 :cl1 privmsg %opserv% :ADDBAD %testchan%4abc EXCEPT :cl1 privmsg %opserv% :ADDBAD %testchan%4abc EXCEPT %testchan%4ab :cl1 privmsg %opserv% :ADDEXEMPT %testchan%4ab :cl1 privmsg %opserv% :DELEXEMPT %testchan%4ab :cl1 privmsg %opserv% :ADDTRUST 1.2.3.4 0 1w We like incrementing numbers :cl1 privmsg %opserv% :ADDTRUST [email protected] 0 1w We like incrementing numbers :cl1 privmsg %opserv% :ADDTRUST 1.2.3.4 0 1w We like incrementing numbers :cl1 privmsg %opserv% :DELTRUST 1.2.3.4 :cl1 privmsg %opserv% :CLONE ADD test3 joe.bar.com nick jupe 3 :cl1 privmsg %opserv% :CLONE ADD test3 [email protected] nick jupe 3 :cl1 privmsg %opserv% :CLONE REMOVE gobbledygook :cl1 privmsg %opserv% :CLONE REMOVE %chanserv% :cl1 privmsg %opserv% :CLONE bogus test3 :cl1 privmsg %opserv% :CLONE JOIN test3 %testchan%1 :cl1 privmsg %opserv% :CLONE OP test3 %testchan%1 :cl1 privmsg %opserv% :CLONE SAY test3 %testchan%1 :cl1 privmsg %opserv% :CLONE SAY test3 %testchan%1 HAHA H4X :cl1 privmsg %opserv% :CLONE JOIN test3 %testchan%1abc :cl1 privmsg %opserv% :CLONE PART test3 %testchan%1 :cl1 privmsg %opserv% :CLONE REMOVE test3 :cl1 privmsg %opserv% :GAG test3!*@*.%domain% 1w Clones sux connect cl3 test3 test3 %srv2% :Test Bot 3 :cl1 wait cl3 :cl1 privmsg %opserv% :ADDALERT test3 kill NICK test3 :cl1 privmsg %opserv% :DELALERT test3 kill NICK test3 :cl3 privmsg %nickserv% :HELP :cl3 nick test4 :cl3 privmsg %nickserv% :HELP :cl3 nick test3 :cl3 privmsg %nickserv% :HELP :cl1 privmsg %opserv% :UNGAG test3!*@*.%domain% :cl1 privmsg %opserv% :SET server/max_users 128 :cl1 privmsg %opserv% :SETTIME * # Test MemoServ functions :cl1 privmsg %memoserv% :SEND gobble,dy HELLO? :cl1 privmsg %memoserv% :SEND test2 HELLO? :cl1 privmsg %memoserv% :SET NOTIFY ON :cl1 privmsg %memoserv% :SET AUTHNOTIFY ON :cl2 wait cl1 :cl2 privmsg %memoserv% :SET NOTIFY OFF :cl2 privmsg %memoserv% :SET AUTHNOTIFY OFF :cl2 privmsg %memoserv% :LIST :cl2 privmsg %memoserv% :SEND test1 HELLO! :cl2 privmsg %memoserv% :DELETE 0 :cl1 wait cl2 :cl1 privmsg %memoserv% :SET PRIVATE ON :cl2 wait cl1 :cl2 privmsg %memoserv% :SEND test1 DO YOU STILL LIKE ME? :cl1 wait cl2 :cl1 privmsg %chanserv% :%testchan%1 DELUSER test2 :cl1 privmsg %nickserv% :RENAME test2 testy :cl2 wait cl1 :cl2 privmsg %memoserv% :SEND test1 DO YOU STILL LIKE ME? :cl1 privmsg %memoserv% :LIST :cl1 privmsg %memoserv% :READ 1 :cl1 privmsg %memoserv% :READ 10 :cl1 privmsg %memoserv% :DELETE 10 :cl1 privmsg %memoserv% :DELETE ALL :cl1 privmsg %memoserv% :DELETE ALL CONFIRM :cl1 privmsg %memoserv% :EXPIRE :cl1 privmsg %memoserv% :EXPIRY :cl1 privmsg %memoserv% :VERSION :cl1 privmsg %memoserv% :STATUS # Test ServerSpy functions :cl1 privmsg %opserv% :DISCONNECT :cl1 privmsg %opserv% :DISCONNECT :cl1 privmsg %opserv% :STATS SERVERSPY :cl1 privmsg %opserv% :CONNECT :cl1 privmsg %opserv% :CONNECT :cl1 privmsg %opserv% :DELMOD hl bogus :cl1 privmsg %opserv% :DELMOD hl cstrike :cl1 privmsg %opserv% :DELMOD bogus cstrike :cl1 privmsg %opserv% :DELGAME hl :cl1 privmsg %opserv% :DELGAME hl :cl1 privmsg %opserv% :ADDGAME hl Half Life :cl1 privmsg %opserv% :ADDGAME hl Half Life :cl1 privmsg %opserv% :ADDMOD hl cstrike Counter-Strike :cl1 privmsg %opserv% :ADDMOD hl cstrike Counter-Strike :cl1 privmsg %opserv% :ADDMOD bogus cstrike Counter-Strike :cl1 privmsg %chanserv% :HELP SERVERSPY :cl1 privmsg %chanserv% :SERVERSPY GAME hl :cl1 privmsg %chanserv% :SERVERSPY NAME Jose :cl1 privmsg %chanserv% :SERVERSPY NAME Jose GAME bogus :cl1 privmsg %chanserv% :SERVERSPY NAME Jose GAME hl MOD bogus :cl1 privmsg %chanserv% :SERVERSPY NAME Jose GAME hl MOD cstrike :cl1 privmsg %chanserv% :SERVERSPY NAME *p* GAME hl MOD cstrike :cl1 privmsg %chanserv% :SERVERSPY SERVER *?p* GAME hl MOD cstrike :cl1 privmsg %chanserv% :%testchan%1 SET GAME :cl1 privmsg %chanserv% :%testchan%1 SET GAME bogus :cl1 privmsg %chanserv% :%testchan%1 SET GAME hl :cl1 privmsg %chanserv% :%testchan%1 SET GAME :cl1 privmsg %chanserv% :%testchan%1 SET MOD :cl1 privmsg %chanserv% :%testchan%1 SET MOD bogus :cl1 privmsg %chanserv% :%testchan%1 SET MOD cstrike :cl1 privmsg %chanserv% :%testchan%1 SET MOD :cl1 privmsg %chanserv% :%testchan%1 SET CLANTAG [D] :cl1 privmsg %chanserv% :%testchan%1 SET CLANTAG [D* :cl1 privmsg %chanserv% :%testchan%1 SET CLANTAG :cl1 privmsg %chanserv% :%testchan%1 SET SERVERTAG [D] :cl1 privmsg %chanserv% :%testchan%1 SET SERVERTAG [D* :cl1 privmsg %chanserv% :%testchan%1 SET SERVERTAG :cl1 privmsg %chanserv% :%testchan%1 SERVERSPY NAME *p* :cl1 privmsg %chanserv% :%testchan%1 LOCATECLAN :cl1 privmsg %chanserv% :%testchan%1 LOCATESERVER :cl1 privmsg %opserv% :STATS SERVERSPY # Test proxy checker code :cl1 privmsg %opserv% :HOSTSCAN 62.255.216.72 :cl1 sleep 10 :cl1 privmsg %opserv% :CLEARHOST 62.255.216.72 # Clean up test channel :cl1 privmsg %chanserv% :%testchan%1 SET NODELETE OFF :cl1 privmsg %chanserv% :%testchan%1 UNREGISTER # exit all clients :cl2 wait cl1 :cl2 privmsg %nickserv%@%srvx% :UNREGISTER MY SHIZNIT :cl2 privmsg %nickserv%@%srvx% :UNREGISTER testest :cl1 wait cl2 :cl1 quit :cl2 quit :cl3 quit # THINGS NOT HIT YET: # announcing user modes +w, +s, +d, +g, +h, +x # sending bursts with: # user list wrapping to a new line # voiced users on srvx's side # ban list wrapping to a new line (on first ban or on later bans) # sending ERROR # KILL from a real user # sending SVSNICK # sending PART with no reason (not just an empty reason) # sending raw text # calling change_nicklen() # receiving numerics 331, 432 from uplink # receiving AC from uplink # receiving FA from uplink # .. or any other fake host support # receiving voiced users in burst # receiving a burst where remote channel is younger # receiving a KILL from uplink # receiving a SQUIT from uplink # receiving a NOTICE from uplink # receiving a GLINE from uplink # receiving a MODE <nick> change for: +s, +h, +f # receiving a MODE <#channel> change for: +p, -k, -b # receiving a ERROR from uplink # clearing modes for a channel with modes: +t, +n, +D, +r, +c, +C, +b # removing a ban from a channel where an earlier ban doesn't match # mod_chanmode() with MC_NOTIFY flag # various hostmask generation options
matildel/x3
tests/coverage-2.cmd
bat
gpl-3.0
30,598
@echo off setlocal :: Locations set out_directory=..\..\out\vs_addin\Test set mstest_file=Results.trx set test_assembly=..\..\out\vs_addin\2012\Debug\UnitTests.dll :: Set up the Visual Studio environment call "%VS110COMNTOOLS%vsvars32.bat" :: Make the output directory and clean up existing mstest result file mkdir %out_directory% if exist %out_directory%\%mstest_file% del %out_directory%\%mstest_file% :: Run MSTest mstest /testcontainer:%test_assembly% /testsettings:Local.testsettings /resultsfile:%out_directory%\%mstest_file% :: Parse the result with python script, return python's exit status python check_test_results.py %out_directory%\%mstest_file% endlocal & set BUILD_ERRORLEVEL=%ERRORLEVEL% :endbuild exit /B %BUILD_ERRORLEVEL%
sbc100/nativeclient-sdk
visual_studio/NativeClientVSAddIn/test_2012.bat
bat
bsd-3-clause
749
ECHO Hello SET GOPATH=%CD%\go SET CF_DIAL_TIMEOUT=15 SET PATH=C:\Go\bin;%PATH% SET PATH=%GOPATH%\bin;%PATH% SET PATH=C:\Program Files\GnuWin32\bin;%PATH% SET PATH=%CD%;%PATH% go get -v -u github.com/onsi/ginkgo/ginkgo cd %GOPATH%\src\code.cloudfoundry.org\cli go build -tags="forceposix" -o cf.exe MOVE %CD%\cf.exe %GOPATH%\bin\cf.exe ginkgo.exe -r -randomizeAllSpecs -slowSpecThreshold 60 %CF_TEST_SUITE% || exit 1
odlp/antifreeze
vendor/github.com/cloudfoundry/cli/ci/cli/tasks/integration-windows-serial.bat
bat
mit
422