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 |
|---|---|---|---|---|---|
call getrev.cmd
cd zlib
mingw32-make -fwin32\makefile.gcc
cd ..
cd src
lrelease smplayer.pro
qmake DEFINES+=PORTABLE_APP
mingw32-make
| nE0sIghT/smpv | compile_windows_portable.cmd | bat | gpl-2.0 | 146 |
@ECHO OFF
title Simple Extractor
COLOR 0A
CLS
ECHO.
ECHO ______ __ __ __ __ ______ __ ______ ______
ECHO /\ ___\/\ \/ / /\ \_\ \/\ ___/\ \/\ __ \/\ ___\
ECHO \ \___ \ \ _'-\ \____ \ \ __\ \ \ \ \__ \ \ __\
ECHO \/\_____\ \_\ \_\/\_____\ \_\ \ \_\ \_\ \_\ \_____\
ECHO \/_____/\/_/\/_/\/__... | Crash911/RaptoredSkyFire | src/tools/mmaps_generator/complete_map_extractor.bat | bat | gpl-3.0 | 2,475 |
@echo off
:-
:- c.bat - Compile ANSI C program (MSVC multiplatform)
:-
:- Copyright (c) 1996-2010 iMatix Corporation
:-
:- This program 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 2 o... | asokoloski/gsl | src/c.bat | bat | gpl-3.0 | 11,974 |
@echo off
cls
setLocal EnableDelayedExpansion
set string=%~dp0
set string=%string:\=/%
set CLASSPATH="%string%app/bin";"%string%app/config"
for /R "%~dp0/app/lib" %%a in (*.jar) do (
set string=%%a
set string=!string:\=/!
set CLASSPATH=!CLASSPATH!;"!string!"
)
set CLASSPATH=!CLASSPATH!;
javac -version
if ERRORLEV... | yottamoto/java-koans | koans/run.bat | bat | apache-2.0 | 656 |
@echo off
cls
"tools\nuget\nuget.exe" "install" "FAKE" "-OutputDirectory" "tools" "-ExcludeVersion" | DigitalFlow/Open-Trace-Viewer | 00_boot.bat | bat | mit | 99 |
.\NuGet.exe pack .\CopyDllsAfterBuild.nuspec -NoPackageAnalysis -OutputDirectory .
| ufcpp/UnityTools | CopyDllsAfterBuild/pack.bat | bat | mit | 84 |
@ECHO OFF
pushd %~dp0
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=sphinx-build
)
set SOURCEDIR=.
set BUILDDIR=_build
set SPHINXPROJ=achallonge
if "%1" == "" goto help
%SPHINXBUILD% >NUL 2>NUL
if errorlevel 9009 (
echo.
echo.The 'sphinx-build' command was not found. Make ... | fp12/achallonge | docs/make.bat | bat | mit | 778 |
start "" ".\ServiceHost\ConsoleHost.exe"
#sleep for 4 seconds; this works for all windows versions.
ping -n <4> 127.0.0.1 > NUL
start "" ".\Client\Shell.exe"
#sleep for 2 seconds; this works for all windows versions.
ping -n <2> 127.0.0.1 > NUL
| artiso-solutions/samples | LiveUpdate/ServiceHost.ConsoleHost/StartClientAndService.bat | bat | mit | 245 |
@echo off
start call start_proxy.bat
start call start_server.bat
start call start_client.bat
| tobspr/P3D-ECS | p3d_ecs/python_prototype/start_1_server_1_clients.bat | bat | mit | 96 |
@echo off
rem
rem End to end tests for TypeProviders
rem To succeed it depends on both the coreclr compiler and the net40 desktop compiler being built
rem It only runs under ci_part3
rem
setlocal
set __scriptpath=%~dp0
pushd %__scriptpath%
rem
rem Build typeprovider package with desktop compiler
rem Test it with bot... | syeerzy/visualfsharp | tests/EndToEndBuildTests/BasicProvider/TestBasicProvider.cmd | bat | mit | 3,383 |
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=... | psychesworld/MapperGenerator | gradlew.bat | bat | mit | 2,400 |
@ECHO OFF
pushd %~dp0
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=python -msphinx
)
set SOURCEDIR=source
set BUILDDIR=build
set SPHINXPROJ=backpackpy-docs
if "%1" == "" goto help
%SPHINXBUILD% >NUL 2>NUL
if errorlevel 9009 (
echo.
echo.The Sphinx module was not found. Ma... | Zwork101/backpack.py | docs/make.bat | bat | mit | 781 |
@echo off
cd ..\processor
call build
cd ..\emulator
mingw32-make
copy /Y elf.exe ..\build
| paulscottrobson/elf-replica | Emulator/build.bat | bat | mit | 90 |
set SDK_ROOT=%ANDROID_HOME%
path=%path%;%SDK_ROOT%\platform-tools
set XTS_ROOT=D:\
set JAR_HOME=%XTS_ROOT%\android-xts\tools
set JAR_PATH=%JAR_HOME%\xts-tradefed.jar;%JAR_HOME%\hosttestlib.jar;%JAR_HOME%\ddmlib-prebuilt.jar;%JAR_HOME%\tradefed-prebuilt.jar
java -Xmx512M -cp %JAR_PATH% -DXTS_ROOT=%XTS_ROOT% com.android... | TeaEntityLab/teaScriptUtils | xts-tradefed.bat | bat | mit | 355 |
set path=C:\Program Files\swipl\bin;%path%;C:\Program Files\Java\jdk1.7.0_45\bin;
cd Gui
javac -cp "C:\Program Files\swipl\lib\jpl.jar;." Board.java Game.java Menu.java Main.java
java -cp "C:\Program Files\swipl\lib\jpl.jar;." Main | rstancioiu/Checkers-AI | launch.bat | bat | mit | 231 |
@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... | mvaz/financial-correlation-networks | make.bat | bat | mit | 7,257 |
@SetLocal EnableDelayedExpansion
@call %~dp0\..\tools\set-common-dir-and-tools.bat
@set /a replacedCount=0
:: for /F "tokens=*" %f in ('lzmw -f "\.csproj$|^allSubmitingTest.sln$" -rp csharp -l -PAC') do @git checkout %f
:: lzmw -rp %~dp0 -f "\.csproj$|^allSubmitingTest.sln$" -it "\w+mobius"
lzmw -rp %~dp0 -f "\.cspro... | qualiu/testMobius | csharp/restore-to-MobiusCodeRoot-in-project-files.bat | bat | mit | 1,091 |
@setlocal
@echo off
@if not "%ECHO%" == "" echo %ECHO%
@rem ???
if "%1" == "" set CALL_MAVEN_OPTS=verify
if not "%1" == "" set CALL_MAVEN_OPTS=%*
@call mvn -V -e %CALL_MAVEN_OPTS%
| mlehmannm/mlm-eclipse-ide-jsworkingset | build.cmd | bat | epl-1.0 | 191 |
del .\configurations\rules\proserv-custom.rules
del /Q /S .\configurations\rules\proserv.rules
del /Q /S .\configurations\rules\proserv-sonos-5z.rules
del /Q /S .\configurations\rules\proserv-custom.rules.bak
del /Q /S .\configurations\items\proserv.items
del /Q /S .\configurations\items\proserv-custom.items
del /Q /S ... | jenskastensson/openhab | distribution/openhabhome/clean.bat | bat | epl-1.0 | 860 |
cmd_drivers/base/module.o := arm-eabi-gcc -Wp,-MD,drivers/base/.module.o.d -nostdinc -isystem /data/repos/cm/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include -I/data/repos/kernels/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/... | bigbiff/i717-GB-Kernel | drivers/base/.module.o.cmd | bat | gpl-2.0 | 18,152 |
cmd_kernel/notifier.o := arm-none-linux-gnueabi-gcc -Wp,-MD,kernel/.notifier.o.d -nostdinc -isystem /home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include -I/root/kernel-dev/linux-2.6.37/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mac... | srinugnt2000/linux-2.6.37 | kernel/.notifier.o.cmd | bat | gpl-2.0 | 16,034 |
taskkill -im freecad.exe /f
@echo OFF
echo cadquery-freecad-module required
@echo ON
cd %~p0
start "" "c:\FreeCAD\bin\freecad" export_conn_jst_xh.py B02B_XH_A
:: FreeCAD export_conn_jst_xh.py all
| metacollin/kicad-3d-models-in-freecad | cadquery/FCAD_script_generator/launch-cq-XH-export.bat | bat | gpl-2.0 | 196 |
cmd_net/core/utils.o := arm-none-linux-gnueabi-gcc -Wp,-MD,net/core/.utils.o.d -nostdinc -isystem /home/stesalit/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include -I/root/kernel-dev/linux-2.6.37/arch/arm/include -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-... | srinugnt2000/linux-2.6.37 | net/core/.utils.o.cmd | bat | gpl-2.0 | 30,551 |
cmd_fs/nls/built-in.o := arm-linux-gnueabi-ld -EL -r -o fs/nls/built-in.o fs/nls/nls_base.o fs/nls/nls_cp437.o fs/nls/nls_cp936.o fs/nls/nls_ascii.o fs/nls/nls_iso8859-1.o fs/nls/nls_iso8859-15.o fs/nls/nls_utf8.o
| jpsminix/minix5 | fs/nls/.built-in.o.cmd | bat | gpl-2.0 | 219 |
cmd_drivers/media/platform/mxc/subdev/ov5640_camera.o := arm-poky-linux-gnueabi-ld -EL -r -o drivers/media/platform/mxc/subdev/ov5640_camera.o drivers/media/platform/mxc/subdev/ov5640.o
| heyoufei2/yocto3.14.38_kernel | drivers/media/platform/mxc/subdev/.ov5640_camera.o.cmd | bat | gpl-2.0 | 190 |
@echo OFF
title win32
set GOROOT=d:\go
set GOPATH=%CD%
set _TOOLS=%~dp0
set CC=gcc.exe
set CXX=g++.exe
set BITS=
set INSTROOT=%_TOOLS%mingw%BITS%
set PKG_CONFIG_LIBDIR=%INSTROOT%\lib%BITS%\pkgconfig
set CGO_ENABLED=1
set GOHOSTOS=windows
set GOHOSTARCH=amd64
set GOOS=windows
set GOARCH=386
set ... | rupor-github/kindle | go_1.4.2/buildgo_win_x86.cmd | bat | gpl-2.0 | 470 |
md K:\4CCANopen
copy 4CCANopen_4ceng.kad K:\4CCANopen\4CCANopen_4ceng.kad
copy Setup_4CCANopen.bat K:\4CCANopen\Setup_4CCANopen.bat
copy I:\4Control_R\KADmerge.dll K:\4CCANopen\KADmerge.dll
copy I:\4Control_R\KADMerger.exe K:\4CCANopen\KADMerger.exe | MECTsrl/ATCMcontrol_Engineering | src/COM/softing/fc/CSET/Setups/4CCANopen/Build.bat | bat | gpl-3.0 | 278 |
net group %1% /domain | perl -ne "print if /^[A-Z]{2}/" | perl -pe "s/\s+/\n/g" | 0f27/wuCLI-tools | members.bat | bat | gpl-3.0 | 79 |
@echo off
set username=%1
set password=%2
set dbname=%3
set table=%4
echo use %dbname%;show columns from %table%; | "C:\Program Files\MySQL\bin\mysql.exe" -u%username% -p%password%
| pmanwatkar/puppetModules | actions/files/Database_mysql_windows/show_columns_in_a_table.bat | bat | gpl-3.0 | 182 |
@echo off
setlocal
set EXAMPLE_ENV_VAR1=value1
endlocal
set EXAMPLE_ENV_VAR2=value2
echo %1
| cpp-ftw/ccsh | test/var test.bat | bat | gpl-3.0 | 94 |
! A slightly fancier test of POINT-type (no ranges) subscripted names
add -name a -region=AREG
add -name b -region=BREG
add -name c -region=CREG
add -name a(1) -reg=AREG
add -name b(2,"efgh") -reg=BREG
add -name c(3,5,7,8,"zzz",10) -reg=CREG
exit
add -region AREG -dyn=AREG -stdnullcoll
add -segment AREG -file=AREG.dat
... | nars1/YottaDBtest | spanning_regions/inref/gde38.cmd | bat | agpl-3.0 | 523 |
pip install jupyter
pip install ipywidgets
pip install numpy
pip install matplotlib
pip install seaborn
pip install pypbe | drericstrong/pypbe | pypbe-nb/install.bat | bat | agpl-3.0 | 121 |
rem ==========================
rem Generates the documentation
rem ==========================
rem
tools\nant\nant.exe -buildfile:GitSharp.build %1 -t:net-3.5 -D:build.config=release -D:build.vcs.number.1=%BUILD_VCS_NUMBER% compile-gitsharp
cd tools\docu
docu ..\..\build\net-3.5-release\bin\GitSharp.dll
rem The docs a... | henon/GitSharp | generate-Docs.bat | bat | lgpl-2.1 | 355 |
rmdir "%~dp0Output" /s /q
del "%~dp0DeveMultiCompressor.7z"
del "%~dp0DeveMultiCompressor.zip" | devedse/DeveMultiCompressor | Scripts/Cleanup.cmd | bat | unlicense | 94 |
@echo off
pscp -l pi -pw !16root_ C:/github/rasp-pi-api/apache-server-scripts/*.php pi@192.168.0.2:/var/www/html/
pscp -l pi -pw !16root_ C:/github/rasp-pi-api/apache-server-scripts/*.html pi@192.168.0.2:/var/www/html/ | seayjohnny/rasp-pi-api | apache-server-scripts/batch/update_host.bat | bat | apache-2.0 | 219 |
@echo off
@rem Script for creating a new application
setlocal
mvn -B archetype:generate ^
-DarchetypeGroupId=org.apache.apex ^
-DarchetypeArtifactId=apex-app-archetype ^
-DarchetypeVersion=3.3.0-incubating ^
-DgroupId=com.example ^
-Dpackage=com.example.myapexapp ^
-DartifactId=myapexapp ^
-... | DataTorrent/examples | tutorials/topnwords/scripts/newapp.cmd | bat | apache-2.0 | 355 |
@echo off
java -Djava.library.path="C:\Program Files\hello\lib;..\lib" -cp "C:\Program Files\hello\lib\hello-java.jar;..\lib" net.cryp7.range.hello.Hello
| enkaskal/hello | hello-java/distrib/hello-java.bat | bat | apache-2.0 | 158 |
@echo off
rem CDDL HEADER START
rem
rem The contents of this file are subject to the terms of the
rem Common Development and Distribution License, Version 1.0 only
rem (the "License"). You may not use this file except in compliance
rem with the License.
rem
rem You can obtain a copy of the license at
rem tr... | TremoloSecurity/MyVirtualDirectory | test/opends-1.0b7/bat/ldifsearch.bat | bat | apache-2.0 | 1,234 |
rem
rem Ant batch file
rem Antsoft Co.
rem
set JAVA_HOME=D:\jdk1.1.8
set path=%JAVA_HOME%\bin
set ANT_HOME=C:\Work\Ant
set classpath=%JAVA_HOME%\lib\classes.zip;
set classpath=%ClassPath%;%ANT_HOME%\classes;%ANT_HOME%\lib\ant.jar;%ANT_HOME%\lib\swingall.jar;%ANT_HOME%\lib\jh.jar
java.exe com.antsoft.ant.de... | FJplant/AntIDE | bin/rundebugger.bat | bat | apache-2.0 | 370 |
python egolpy.py -x 80 -y 80 -W 800 -H 800 -r gol.rules -p -l gol1.txt -n 1
| bjodah/egolpy | gol1.cmd | bat | bsd-2-clause | 76 |
rmdir /S /Q vs17
mkdir vs17
cd vs17
cmake ..\.. -G "Visual Studio 15 2017" | JAJames/Jupiter-Bot | build/cmake_vs17.bat | bat | isc | 74 |
@echo off
bii find
pause
exit | ArduinoIDE/Arduino-PyQt-IDE | bii-ide/resources/script/win/find.bat | bat | mit | 29 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_LISTSWS.S03_OperationOnListItem.MSLISTSWS_S03_TC95_UpdateListItems_ValidListTitle /testcontainer:..\..\MS-LISTSWS\TestSuite\bin\Debug\MS-LISTSWS_TestSuite.dll /runconfig:..\..\MS-LISTSWS\MS-LISTSWS.testsettings /unique
pause | OfficeDev/Interop-TestSuites | SharePoint/Source/Scripts/MS-LISTSWS/RunMSLISTSWS_S03_TC95_UpdateListItems_ValidListTitle.cmd | bat | mit | 318 |
cmd_drivers/msp/vfmw/vfmw_v4.0/firmware/product/HiS40V200/HD_FULL/common/syntax/vp6.o := arm-hisiv200-linux-gcc -Wp,-MD,drivers/msp/vfmw/vfmw_v4.0/firmware/product/HiS40V200/HD_FULL/common/syntax/.vp6.o.d -nostdinc -isystem /opt/hisi-linux/x86-arm/arm-hisiv200-linux/bin/../lib/gcc/arm-hisiv200-linux-gnueabi/4.4.1/incl... | caps-liu/hisi-driverlibs | source/msp/drv/vfmw/vfmw_v4.0/firmware/product/HiS40V200/HD_FULL/common/syntax/.vp6.o.cmd | bat | gpl-2.0 | 1,681 |
@echo off
rem -------------------------------------------------------------
rem Yii command line script for Windows.
rem
rem This is the bootstrap script for running yiic on Windows.
rem
rem @author Qiang Xue <qiang.xue@gmail.com>
rem @link http://www.yiiframework.com/
rem @copyright Copyright © 2008 Yii Sof... | thu0ng91/yangung | yii/yiic.bat | bat | bsd-2-clause | 619 |
@ECHO OFF
set JAVAPROG=java
set savedCLASSPATH=%CLASSPATH%
set LOTUSXSLDIR=d:\xslt\testsuite\classes\
rem +++ This file is used to run embed01, embed02, embed07, embed08(4x) and paramtest. +++
rem +++ Set classpath based on the build you are testing +++
rem +++ This is for XALANJ build.
rem
rem set XCLASSPAT... | draekko/arabica | tests/XSLT/testsuite/TESTS/Xalan_Conformance_Tests/embed/testembed.bat | bat | bsd-3-clause | 1,969 |
copy ..\..\MoonSharp.Interpreter.Tests\bin\Release\*.dll Assets\Plugins
copy ..\..\MoonSharp.Interpreter.Tests\bin\Release\*.pdb Assets\Plugins
copy ..\..\MoonSharp.Interpreter.Tests\bin\Release\*.xml Assets\Plugins
pause
| RainsSoft/moonsharp | src/Unity/UnityTestBed/ResynchAssets.cmd | bat | bsd-3-clause | 223 |
@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% %ALLS... | rehassachdeva/pydsa | docs/make.bat | bat | bsd-3-clause | 7,251 |
@echo off
if "%1" == "" goto paramErr
if "%VSINSTALLDIR%" == "" goto envErr
set COMPILER=%1
rem Determine CMake generator
if "%COMPILER%" == "vc71" set GENERATOR="Visual Studio 7 .NET 2003"
if "%COMPILER%" == "vc8" set GENERATOR="Visual Studio 8 2005"
if "%COMPILER%" == "vc8_x64" set GENERATOR="Visual Studio 8 2005 W... | jjenki11/blaze-chem-rendering | ogre/ogre_src_v1-8-1/SDK/Win32/buildsdk.bat | bat | mit | 3,478 |
@rem Copyright 2016 gRPC authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem http://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable ... | yongni/grpc | src/csharp/build_packages_dotnetcli.bat | bat | apache-2.0 | 2,491 |
@echo off
Rem Configure Bison for DJGPP.
Rem WARNING WARNING WARNING: This file needs to have DOS CRLF end-of-line
Rem format, or else stock DOS/Windows shells will refuse to run it.
Rem Copyright (C) 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
Rem This program is free software: you can redistribut... | sgraham/nope | third_party/bison/src/bison/2.4.1/bison-2.4.1-src/djgpp/config.bat | bat | bsd-3-clause | 22,549 |
rem
rem This file is part of the LibreOffice project.
rem
rem This Source Code Form is subject to the terms of the Mozilla Public
rem License, v. 2.0. If a copy of the MPL was not distributed with this
rem file, You can obtain one at http://mozilla.org/MPL/2.0/.
rem
rem This file incorporates work covered by the follow... | qt-haiku/LibreOffice | sal/test/bootstrap.bat | bat | gpl-3.0 | 2,588 |
%SystemDrive%\cygwin\bin\which.exe bash
if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
echo Preparing generator output directory...
set GeneratorDirectory=%CONFIGURATIONBUILDDIR%/obj32/WebKitExportGenerator
mkdir "%GeneratorDirectory%" 2>NUL
mkdir "%GeneratorDirectory%\DerivedSources" 2>NUL
echo Clearing ol... | CodeDJ/qt5-hidpi | qt/qtwebkit/Source/WebKit/WebKit.vcxproj/WebKitExportGenerator/WebKitExportGeneratorPreBuild.cmd | bat | lgpl-2.1 | 770 |
@make --no-builtin-rules --no-builtin-variables -d >log_debug.txt 2>&1
| chcbaram/FPGA | zap-2.3.0-windows/papilio-zap-ide/hardware/arduino/sam/system/CMSIS/Examples/cmsis_example/gcc_atmel/build_debug.bat | bat | mit | 71 |
@echo off
call npm install
SETLOCAL
SET PATH=node_modules\.bin;node_modules\hubot\node_modules\.bin;%PATH%
node_modules\.bin\hubot.cmd --name "roobot" %*
| gpa-centex/roobot | bin/hubot.cmd | bat | mit | 157 |
type common.js store.js views.js edit_feats3.js edit_spells.js edit_equipment.js edit_weapons.js edit.js main.js log.js > all.js
| chambery/charmgrjs | merge_all.bat | bat | mit | 130 |
del temp\color_test.o
del temp\color_test.nes
cc65\bin\ca65 color_test.s -g -o temp\color_test.o
cc65\bin\ld65 -C nrom.cfg -o temp\color_test.nes temp\color_test.o -m temp\color_test_map.txt -Ln temp\color_test_labels.txt
@pause | encse/nes-emulator | packages/webapp/static/test/ppu/color_test/compile_color_test.bat | bat | mit | 232 |
@setlocal enabledelayedexpansion && python -x "%~f0" %* & exit /b !ERRORLEVEL!
import sys, subprocess
s = set([])
for arg in sys.argv[1:]:
s = s.union(set(subprocess.check_output("search_by_tag %s"%arg, shell=True).split()))
print '\n'.join(sorted(list(s)))
| ktan2020/legacy-automation | tools/search_by_tags.bat | bat | mit | 271 |
@ECHO OFF
REM Command file for Sphinx documentation
pushd %~dp0
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=python -msphinx
)
set BUILDDIR=_build
set ALLSPHINXOPTS=-d %BUILDDIR%/doctrees %SPHINXOPTS% .
set I18NSPHINXOPTS=%SPHINXOPTS% .
if NOT "%PAPER%" == "" (
set ALLSPHINXOPTS=-D latex_elements.papers... | ericdunham/farmers-market | docs/make.bat | bat | mit | 7,569 |
@echo off
set xv_path=C:\\Xilinx\\Vivado\\2016.4\\bin
echo "xvhdl -m64 --relax -prj svd_2x2_vhdl.prj"
call %xv_path%/xvhdl -m64 --relax -prj svd_2x2_vhdl.prj -log xvhdl.log
call type xvhdl.log > compile.log
if "%errorlevel%"=="1" goto END
if "%errorlevel%"=="0" goto SUCCESS
:END
exit 1
:SUCCESS
exit 0
| lasalvavida/Zybo-Open-Source-Video-IP-Toolbox | general_ip/svd_2x2/svd_2x2.sim/sim_1/behav/compile.bat | bat | mit | 304 |
nuget pack Dexiom.EPPlusExporter.nuspec -Properties version="0.0.1" | Dexiom/Dexiom.EPPlusExporter | Dexiom.EPPlusExporter/CreatePackage.bat | bat | mit | 67 |
#!/bin/bash
node ./node_modules/sails/bin/sails.js %*
| harindaka/node-mvc-starter | sails.bat | bat | mit | 54 |
;@echo off
;;;;; rem start of the batch part ;;;;;
; if "%~2" EQU "" (
; echo invalid arguments.For help use:
; echo %~nx0 /h
; exit /b 1
;)
;for %%a in (/h /help -h -help) do (
; if "%~1" equ "%%~a" (
; echo compressing directory to cab file
; echo %~nx0 directory cabfile
; echo to uncompress use:
; echo... | TheBigBear/batch.scripts | hybrids/makecab/cabdir.bat | bat | mit | 1,497 |
@echo off
REM cup -y checksum msbuild.communitytasks msbuild.extensionpack nuget.commandline wixtoolset
for /f "usebackq tokens=1* delims=: " %%i in (`"%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" -latest -requires Microsoft.Component.MSBuild`) do (
if /i "%%i"=="installationPath" set InstallD... | denxorz/HotChocolatey | build.bat | bat | mit | 475 |
@ECHO off
msg * welcome to the bot.net by virus zero
msg * to start to destroy websites/ips/devices/ you have bot folder
msg * then open every bot and copy paste this
start commands.txt
msg * then open the hacker.bat
msg * dont forget the max size of packages is 65500 so go and edit it in the bots | fadybinadnan/BOTNet-2017.4- | botnet v1/readbefore start.bat | bat | mit | 306 |
php ../extract_cmdb.php | Julien-SIMON/GobelinsLab | plugins/cmdb/bin/extract_cmdb.bat | bat | mit | 23 |
cmd_net/core/built-in.o := /pub/CIS520/usr/arm/bin/arm-angstrom-linux-gnueabi-ld -EL -r -o net/core/built-in.o net/core/sock.o net/core/request_sock.o net/core/skbuff.o net/core/iovec.o net/core/datagram.o net/core/stream.o net/core/scm.o net/core/gen_stats.o net/core/gen_estimator.o net/core/net_namespace.o net/co... | mjmccall/Kernel | net/core/.built-in.o.cmd | bat | gpl-2.0 | 591 |
setlocal enabledelayedexpansion
set MyprojectPath=%1
set MyProjectName=%2
set MybuildType=%3
set MystartAddr=%4
set MyName=%MyProjectName:~0,-4%
set MyFilePath=%MyprojectPath%\%MybuildType%\Exe
set MyComPort=%5
set MyComNum=%MyComPort:~3%
set MyCommand=pm reboot sysdfu
set /a regnum=0
set StressTest=true
set ToolVersi... | fangrui166/duf_tool | develop_uart.cmd | bat | gpl-2.0 | 3,850 |
cmd_fs/hfs/hfs.ko := ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ld -EL -r -T ./scripts/module-common.lds --build-id -o fs/hfs/hfs.ko fs/hfs/hfs.o fs/hfs/hfs.mod.o
| avareldalton85/rpi2-linux-rt | fs/hfs/.hfs.ko.cmd | bat | gpl-2.0 | 211 |
cmd_fs/dcache.o := /opt/arm-2008q1/bin/arm-none-linux-gnueabi-gcc -Wp,-MD,fs/.dcache.o.d -nostdinc -isystem /data/linux/opt/arm-2008q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.2.3/include -Iinclude -I/data/embedded/acer/acergit/linux/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarc... | yohanes/Acer-BeTouch-E130-Linux-Kernel | fs/.dcache.o.cmd | bat | gpl-2.0 | 22,284 |
cmd_drivers/md/dm-kcopyd.o := gcc -Wp,-MD,drivers/md/.dm-kcopyd.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-linux-gnu/4.8/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Os -Wframe-... | namgk/kernel-tut | drivers/md/.dm-kcopyd.o.cmd | bat | gpl-2.0 | 21,581 |
cmd_drivers/char/built-in.o := /opt/arm-2009q3/bin/arm-none-eabi-ld -EL -r -o drivers/char/built-in.o drivers/char/mem.o drivers/char/random.o drivers/char/tty_io.o drivers/char/n_tty.o drivers/char/tty_ioctl.o drivers/char/tty_ldisc.o drivers/char/tty_buffer.o drivers/char/tty_port.o drivers/char/pty.o drivers/cha... | sembre/kernel_totoro_update3 | common/drivers/char/.built-in.o.cmd | bat | gpl-2.0 | 613 |
call "setup_mssdk71.bat"
cd .
if "%1"=="" (nmake -f hdlcodercpu_eml.mk all) else (nmake -f hdlcodercpu_eml.mk %1)
@if errorlevel 1 goto error_exit
exit /B 0
:error_exit
echo The make command returned an error of %errorlevel%
An_error_occurred_during_the_call_to_make
| sandeshghimire/model-based-fpga-desing | matlab_model/hdlcodercpu_eml_grt_rtw/hdlcodercpu_eml.bat | bat | gpl-2.0 | 271 |
cmd_security/built-in.o := ld -m elf_i386 -r -o security/built-in.o security/commoncap.o
| namgk/kernel-tut | security/.built-in.o.cmd | bat | gpl-2.0 | 93 |
cmd_net/netfilter/xt_connmark.o := arm-linux-gnueabi-gcc -Wp,-MD,net/netfilter/.xt_connmark.o.d -nostdinc -isystem /usr/lib/gcc-cross/arm-linux-gnueabi/4.7/include -Iinclude -I/home/benoit/kernel_android/32/es209ra/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/inc... | b8e5n/KTG-kernel_es209ra | net/netfilter/.xt_connmark.o.cmd | bat | gpl-2.0 | 29,979 |
cmd_drivers/media/video/mhl/built-in.o := /home/yyoung.kim/Toolchain/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o drivers/media/video/mhl/built-in.o drivers/media/video/mhl/sii9234.o
| PrestigeMod/SHW-M440S | drivers/media/video/mhl/.built-in.o.cmd | bat | gpl-2.0 | 213 |
@echo off
SET PERLPATH=%CD%\64\perl
SET PATH=C:\Windows\system32
SET PATH=%PERLPATH%\perl\site\bin;%PATH%
SET PATH=%PERLPATH%\perl\bin;%PATH%
SET PATH=%PERLPATH%\c\bin;%PATH%
cmd | mgreter/webmerge | pack/win/app/99-cmd-64.bat | bat | gpl-3.0 | 182 |
rem START BATCH COMMANDS
rem PLEASE MAKE SURE THAT USER ACCOUNT CONTROL (UAC) IS TURNED OFF AND PC HAS BEEN REBOOTED FIRST!
rem If you are using VISTA x32 version, then edit this file first by adding rem in front of every line that contains the phrase syswow64?. Then run the acript again.
@echo off
PAUSE
takeown /... | Erotemic/local | vim/grave/replace_notepad_with_vim.bat | bat | gpl-3.0 | 1,163 |
java -Xmx512M -cp .;lib/*;lib/uncommons-maths-1.2.3/uncommons-maths-1.2.3.jar;lib/batik/* core.DTNSim %* | DSG-UniFE/ICeDiM | one.bat | bat | gpl-3.0 | 104 |
rem msvc writes all objects to CWD, so we need do some renames to resolve conflicts
move common\common.c common\host_common.c
move common\soundlib\libmpg\common.c common\soundlib\libmpg\mpg_common.c
cl -Dvsnprintf=_vsnprintf -o xash_sdl.dll /DEBUG /Zi /DLL /W3 /Gm /GD /G6 /LD /O2 /MD /O2 /D_USRDLL /DXASH_FORCEINLINE /D... | ShaunNoWay/xash3d | msvc6/build.bat | bat | gpl-3.0 | 1,061 |
@echo off
cd %~dp0
powershell -Command "& {Import-Module .\packages\psake.4.3.2\tools\psake.psm1; Invoke-psake .\scripts\default.ps1 License -parameters @{"buildConfiguration"='Release';} }"
| flumbee/netwatch | license.cmd | bat | agpl-3.0 | 193 |
git stash
git svn rebase
git svn dcommit
git stash pop
| Refuge89/Arc_Mind | gitcommit.bat | bat | agpl-3.0 | 56 |
@echo off
rem :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
rem :: WLA DX compiling batch file v2 ::
rem :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
rem :: You have to edit this file before it will work! ::
rem :: Edit the line below, starting with "SET... | haroldo-ok/really-old-stuff | mastersystem/backword/Compile.bat | bat | apache-2.0 | 1,523 |
@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% %ALLS... | tumi8/INSALATA | docs/make.bat | bat | apache-2.0 | 7,262 |
@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 `... | rhouse2/django-rest2pdf | docs/make.bat | bat | bsd-3-clause | 3,287 |
@echo off
cd ../..
SET INPUT_SCHEMA_FILE_PATH=resources/IFC2X3_TC1.exp
SET INPUT_MODEL_FILE_PATH=C:\DRUM\!git_local\DRUM\Test\Models\drumbeat.cs.hut.fi\linked\TS-Linked-1\Structural.ifc
SET OUTPUT_MODEL_FILE_PATH=C:\DRUM\!git_local\DRUM\Test\Models\drumbeat.cs.hut.fi\linked\TS-Linked-1\Structural
rem sample formats:... | Web-of-Building-Data/Ifc2Rdf | software/distributives/export-ifc2rdf/1.5.3-SNAPSHOT/samples/scripts/export-structural-model-TURTLE-Standard-to-file-001.bat | bat | mit | 663 |
@echo off
if "%1"=="javadate" date /t & goto end
if "%1"=="javatime" time /t & goto end
for /f "tokens=1-4 eol=/ DELIMS=/ " %%i in ('date /t') do set BUILD=%%l%%j%%k
echo %BUILD%
:end
| AudriusButkevicius/TurboVNC | java/cmake/getdate.bat | bat | gpl-2.0 | 188 |
:: Script for migrating saved games in Windows 2000/XP/Vista/7
::
:: Put this batch file into the ScummVM directory
:: This script will copy any saved games located in the
:: old default location, to the new default location.
::
:: (c) 2012 ScummVM Team
::
@echo off
echo ScummVM Saved Games Migration Script
echo The d... | klusark/scummvm | dists/win32/migration.bat | bat | gpl-2.0 | 1,238 |
cmd_init/mounts.o := arm-linux-gnueabi-ld -EL -r -o init/mounts.o init/do_mounts.o init/do_mounts_initrd.o
| b8e5n/KTG-kernel_es209ra | init/.mounts.o.cmd | bat | gpl-2.0 | 111 |
@echo off
setlocal ENABLEEXTENSIONS
set MPI=Microsoft HPC Pack 2008 SDK
set MPI=DeinoMPI
set MPI=MPICH2
set PATH="%ProgramFiles%\%MPI%\bin";%PATH%
set MPIEXEC=mpiexec
set NP_FLAG=-n
set NP=5
set PYTHON=C:\Python25\python.exe
set PYTHON=C:\Python26\python.exe
set PYTHON=C:\Python27\python.exe
set PYTHO... | capoe/espressopp.soap | contrib/mpi4py/mpi4py-1.3/demo/mpi-ref-v1/runtests.bat | bat | gpl-3.0 | 1,358 |
:: iKeyHelper
:: Copyright (C) 2012 Callum Jones
:: See attached license
:: if you get all the tools, pop them in resources\tools\
@ECHO OFF
title iKeyHelper
::------------------------------------------------------------------------------------
setlocal enableextensions enabledelayedexpansion
:beginning
set too... | 1000tip/iKeyHelper | iKeyHelper.bat | bat | gpl-3.0 | 49,624 |
"..\.nuget\nuget.exe" pack "..\Sources\Nuget.Server.AzureStorage\Nuget.Server.AzureStorage.csproj"
pause | SzymonSasin/Nuget.Server.AzureStorage | Automation/Create nuget package.cmd | bat | apache-2.0 | 104 |
@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 I18N... | pombredanne/pizco | docs/make.bat | bat | bsd-3-clause | 5,094 |
cmd_scripts/mod/file2alias.o := gcc -Wp,-MD,scripts/mod/.file2alias.o.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -c -o scripts/mod/file2alias.o scripts/mod/file2alias.c
deps_scripts/mod/file2alias.o := \
scripts/mod/file2alias.c \
scripts/mod/modpost.h \
/usr/include/stdio.h \
... | Jewbie/Kernel-2.6.32 | scripts/mod/.file2alias.o.cmd | bat | gpl-2.0 | 2,301 |
REM Run the script from the command line
cscript.exe PdfToXls-CommandLine.vbs "../../sample3.pdf" "output.xlsx"
pause
| bytescout/ByteScout-SDK-SourceCode | Premium Suite/VBScript/Convert pdf to xls with pdf extractor sdk/PdfToXls.bat | bat | apache-2.0 | 120 |
@REM
@REM Copyright (c) 2012-2016 Codenvy, S.A.
@REM All rights reserved. This program and the accompanying materials
@REM are made available under the terms of the Eclipse Public License v1.0
@REM which accompanies this distribution, and is available at
@REM http://www.eclipse.org/legal/epl-v10.html
@REM
@REM Contribu... | dhuebner/che | assembly/assembly-main/src/assembly/bin/che-install-plugin.bat | bat | epl-1.0 | 817 |
@setlocal EnableExtensions EnableDelayedExpansion
@echo off
set "current-path=%~dp0"
set build-clean=0
if "%2" neq "" call :usage && exit /b 1
if "%1" equ "" goto args-done
if "%1" equ "-c" goto arg-build-clean
if "%1" equ "--clean" goto arg-build-clean
call :usage && exit /b 1
:arg-build-clean
set build-clean=1
:a... | 5e8a91/Azure_C_Library_new | c/tools/compilembed/build.cmd | bat | mit | 797 |
@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... | yola/yolapy | docs/make.bat | bat | mit | 7,244 |
@echo off
cd Source/NetCore2
SET OUTPUT=../../../Binaries
SET PARAMS=/consoleloggerparameters:ErrorsOnly /m
dotnet restore
dotnet msbuild /target:ReBuild /property:Configuration=Debug /property:OutputPath=%OUTPUT%\DebugCore2 %PARAMS%
dotnet msbuild /target:ReBuild /property:Configuration=Release /property:Outpu... | amironov73/ManagedIrbis | compilecore2.cmd | bat | mit | 366 |
@rem = '--*-Perl-*--
@echo off
if "%OS%" == "Windows_NT" goto WinNT
perl -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9
goto endofperl
:WinNT
perl -x -S %0 %*
if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto endofperl
if %errorlevel% == 9009 echo You do not have Perl in your PATH.
if errorlevel 1 goto script_failed_so... | amidoimidazol/bio_info | Beginning Perl for Bioinformatics/bin/lwp-mirror.bat | bat | mit | 2,792 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.