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 |
|---|---|---|---|---|---|
start msg * /v /w "It is the time for have a rest, now."
set restPath=%cd% rem default will set c:\window\system32, you can change it to anywhere.
set /a count = %1+1
if %count% gtr 4 (
set /a count=1
start msg * /v /w "One hour is gone. Please go walk around."
)
set /a hour=%time:~0,2%
set /a min=%time:~3,2%+15
if %... | darkdown/test | Rest/Rest.bat | bat | gpl-3.0 | 589 |
@ECHO OFF
CLS
SET DIRE=%~dp0
CD "%DIRE%"
certutil -p ESServer -importPFX ESServer.pfx
netsh http add urlacl url=https://+:12345/ user=Everyone
netsh http add sslcert ipport=0.0.0.0:12345 certhash=DA62DDAEF3949EC8D1D3472B71FDE5B7094E54B6 appid={30b7e476-c039-435c-b3a3-b0f8f200dece} clientcertnegotiation=enable
cer... | erinus/ErinusServer | bin/certificate/certificate.import.cmd | bat | gpl-3.0 | 348 |
-intstyle "ise" -incremental -o "/home/robert/UMD_RISC-16G5/JumpUnit/ECE368_Project_Lab1_Team5/jump_unit_tb_isim_beh.exe" -prj "/home/robert/UMD_RISC-16G5/JumpUnit/ECE368_Project_Lab1_Team5/jump_unit_tb_beh.prj" "work.jump_unit_tb"
| FlatTargetInk/UMD_RISC-16G5 | JumpUnit/ECE368_Project_Lab1_Team5/fuseRelaunch.cmd | bat | gpl-3.0 | 233 |
gradlew build -i
pause>nul | OldHuaJi/OldHuaJiStuff | build.bat | bat | gpl-3.0 | 27 |
@ECHO OFF
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
::
:: Batch file to start phpDocumentor with PHP's CLI
::
:: This SW was contributed by BlueShoes www.blueshoes.org "The PHP Framework"
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:... | asika32764/phpdocumentor-for-joomla-cms | phpdoc.bat | bat | lgpl-2.1 | 4,575 |
@ECHO OFF
SETLOCAL
SET EL=0
ECHO =========== %~f0 ===========
SET APPVEYOR_REPO_COMMIT_MESSAGE=this is a [build appveyor] test
SET APPVEYOR=true
SET MAPNIK_GIT=3.0.5
SET BOOST_VERSION=58
SET FASTBUILD=1
SET configuration=Release
SET msvs_toolset=14
SET platform=x64
SET APPVEYOR_BUILD_FOLDER=%CD%
CALL scripts\build-a... | cjmayo/mapnik | scripts/build-local.bat | bat | lgpl-2.1 | 535 |
@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... | cloudcompare/cork | contrib/mpir-2.6.0/win/configure.bat | bat | lgpl-3.0 | 7,498 |
"c:\Program Files\7-Zip\7z.exe" a -tzip LotsOfHashes.zip .\pluginst\*.* ..\Release\LotsOfHashes.wdx ..\x64\Release\LotsOfHashes.wdx64 -mx7
| arielgee/LotsOfHashes | LotsOfHashes/package/ZipLotsOfHashesPkg.bat | bat | unlicense | 142 |
cmd_coreutils/logname.o := gcc -Wp,-MD,coreutils/.logname.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.25.1)" -DBB_BT=AUTOCONF_TIMESTAMP -Wall -Wshadow -Wwrite-strings -Wundef -Wstrict-prot... | rennman/copfvtci | build/busybox-1.25.1/coreutils/.logname.o.cmd | bat | apache-2.0 | 10,207 |
@echo off
setlocal
pushd "%~dp0"
nuget restore && call :build Debug && call :build Release
popd
goto :EOF
:build
msbuild /p:Configuration=%1 /v:m %2 %3 %4 %5 %6 %7 %8 %9
goto :EOF
| atifaziz/StackTraceFormatter | build.cmd | bat | apache-2.0 | 181 |
md android\assets
md android\src\com\thegamecreators\agk_player
copy ..\..\..\Lib\Android\java\*.java android\src\com\thegamecreators\agk_player
copy ..\..\..\Lib\Android\armeabi\libAGK.so android\libs\armeabi
copy ..\..\Bin\blue.png android\assets
copy ..\..\Bin\background3.jpg android\assets | google-code/agkpas | Examples/01_Sprites/0103_MovePercentage/android_post_build.bat | bat | bsd-2-clause | 299 |
@echo off
SETLOCAL
SET PATH=%PATH%;%WINDIR%\Microsoft.NET\Framework\v4.0.30319;%CD%\..\.nuget;
echo.
echo.
echo =====================
echo === NuGet Restore ===
echo =====================
echo.
NuGet restore SharpRaven.sln
echo.
echo.
echo =====================
echo === GitVersion ===
echo =====================
echo... | xpicio/raven-csharp | src/Build.cmd | bat | bsd-3-clause | 845 |
@echo off
call find-hp.bat %1
if "%hppath%" == "" goto :oops
use-hppath "%hppath%"
goto :end
:oops
echo use-hp.bat: No Haskell Platform was found for: %1
:end
| ygale/win-hp-path | use-hp.bat | bat | bsd-3-clause | 171 |
@echo off
if "%1" equ "--help" goto :usage
for /f "tokens=*" %%g in ('call python %~dp0\rosfindpath.py %1 forceeval') do (
set target_path=%%~g
)
if /i "%target_path:~0,7%"=="Error: " (
echo rosls: %target_path:~7%
exit /b 1
)
dir "%target_path%"
exit /b 0
:usage
echo usage: rosls [package]
echo.
echo.
... | ros/ros | tools/rosbash/scripts/rosls.bat | bat | bsd-3-clause | 374 |
git checkout master
git clean -f -d
git pull
git remote add -f mxberry-core https://github.com/pgagarinov/mxberry-core.git
git checkout -B mxbcoremaster mxberry-core/master
git clean -f -d
git subtree split -P products/mxberry-core --ignore-joins -b mxbcoreprod
git checkout master
git clean -f -d
git subtree add -P pro... | AlliedTesting/pgmex-jdbc-perf-test | products/mxberry-core/automation/git-merge-as-subtree/mxberry-core-add.bat | bat | bsd-3-clause | 360 |
REM @echo off
set MYDIRCD=%~dp0
call %MYDIRCD%..\..\..\config_env_base.bat
rem %HIDEWINDOW% h
set EPICS_CAS_INTF_ADDR_LIST=127.0.0.1
set EPICS_CAS_BEACON_ADDR_LIST=127.255.255.255
set PYTHONUNBUFFERED=TRUE
echo on
%PYTHON3% %MYDIRCD%\CollisionAvoidanceMonitor\main.py
| ISISComputingGroup/EPICS-inst_servers | start_collision_avoidance_monitor_cmd.bat | bat | bsd-3-clause | 273 |
@echo off
dir /b test_*.vbs | cscript %~dp0..\..\bin\TestRunner.wsf //Job:ConsoleTestRunner /stdin+ %*
| EmuxEvans/vbslib | test/assertion/run.bat | bat | bsd-3-clause | 103 |
python gen_msi_${CALLING_PROJECT_FULL_NAME}.py
| cfobel/sconspiracy | Python/racy/plugins/templating/rc/wix/generate_msi.bat | bat | bsd-3-clause | 52 |
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
deps_scripts/kconfig/conf.o := \
scripts/kconfig/conf.c \
$(wildcard include/conf... | NooNameR/Sense4.0-kernel | scripts/kconfig/.conf.o.cmd | bat | gpl-2.0 | 2,816 |
cmd_drivers/base/cpu.o := /opt/buildroot-gcc342/bin/mipsel-linux-uclibc-gcc -Wp,-MD,drivers/base/.cpu.o.d -nostdinc -isystem /root/asuswrt-bender/tools/brcm/K26/hndtools-mipsel-uclibc-4.2.4/bin/../lib/gcc/mipsel-linux-uclibc/4.2.4/include -D__KERNEL__ -Iinclude -include include/linux/autoconf.h -Wall -Wundef -Wstrict... | smx-smx/dsl-n55u-bender | release/src-ra/linux/linux-2.6.21.x/drivers/base/.cpu.o.cmd | bat | gpl-2.0 | 14,566 |
cmd_scripts/kallsyms := gcc -Wp,-MD,scripts/.kallsyms.d -O2 -I/home/wbj/project/mt7621/firewrt_build_all_app/FireWRT-OpenWrt-Firefly-FireWRT-SDK/staging_dir/host/include -I/home/wbj/project/mt7621/firewrt_build_all_app/FireWRT-OpenWrt-Firefly-FireWRT-SDK/staging_dir/host/usr/include -Wall -Wmissing-prototypes -Wstrict-... | michalliu/OpenWrt-Firefly-Libraries | build_dir/target-mipsel_1004kc+dsp_uClibc-0.9.33.2/linux-ramips_mt7621/linux-3.18.11/scripts/.kallsyms.cmd | bat | gpl-2.0 | 2,933 |
cmd /k gradlew :ly-kernel:clean | guyue123/ly | _10.2clean-kernel.bat | bat | lgpl-3.0 | 31 |
NugetMonkey.exe "..\Nuget\Cauldron.Interception.Fody.nuspec" | reflection-emit/Cauldron | Tools/Build-Cauldron.Fody.bat | bat | mit | 60 |
@echo off
md ..\..\..\devel31_64\share\CodeBlocks\images\ThreadSearch > nul 2>&1
md ..\..\..\output31_64\share\CodeBlocks\images\ThreadSearch > nul 2>&1
md ..\..\..\devel31_64\share\CodeBlocks\images\ThreadSearch\16x16 > nul 2>&1
md ..\..\..\output31_64\share\CodeBlocks\images\ThreadSearch\16x16 > nul 2>&1
md ..\..\..\... | jenslody/codeblocks | src/plugins/contrib/ThreadSearch/update31_64.bat | bat | gpl-3.0 | 1,428 |
"C:\Program Files (x86)\OpenOCD\0.4.0\bin\openocd.exe" -f flash.cfg | AmesianX/OpenBLT | Target/Demo/ARMCM3_STM32_Olimex_STM32P103_IAR/Boot/cmd/flash.bat | bat | gpl-3.0 | 67 |
python "%RECIPE_DIR%\build.py"
if errorlevel 1 exit 1
| pelson/conda-build | tests/test-recipes/work-deleted/bld.bat | bat | bsd-3-clause | 54 |
@echo off
@call setup.py install
if errorlevel 1 goto error
goto end
:error
echo -=-=-=-=-=-=-=-=-=-=-
echo There was an error during the installation.
echo Please check the above text for more information.
pause
:end
@echo on
| notklaatu/nxt-python | install.bat | bat | gpl-3.0 | 238 |
:: Description: Batch script for creating a Scheduled Task which will run
:: another .bat file which does a robocopy command to make
:: incremental backups for the destination directory (and sub-directories).
:: The scheduled task is scheduled to run every hour.
:: Usage: Si... | kek91/scripts | batch/HourlyRobocopyBackup/Hourly_Robocopy_Backup.bat | bat | mit | 1,263 |
javaw -cp ".;*;%~dp0/*" -jar "local-runner.jar" true false 3 result.txt true false
| spookiecookie/russianaicup | codetroopers2013/local-runner.bat | bat | mit | 84 |
start explorer /select,C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\Paste123456.ahk | bink81/development-tools | windows/startup (2).bat | bat | mit | 99 |
@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... | ethanluoyc/statsnba-playbyplay | docs/make.bat | bat | mit | 6,485 |
cls
call ../../language/src/locatevc.bat
cl /nologo /W2 /O2 /c /DEBUG ring_threads.c -I"..\..\language\include"
link /DEBUG ring_threads.obj ..\..\lib\ring.lib /DLL /OUT:..\..\bin\ring_threads.dll /SUBSYSTEM:CONSOLE,"5.01"
del ring_threads.obj
| ring-lang/ring | extensions/ringthreads/buildvc.bat | bat | mit | 246 |
@echo off
REM Windows script for running unit tests
REM You have to run server and capture some browser first
REM
REM Requirements:
REM - NodeJS (http://nodejs.org/)
REM - Karma (npm install -g karma)
set BASE_DIR=%~dp0
karma start "%BASE_DIR%\..\test\config\karma.conf.js" %*
| feanz/BlogNodeAngular | scripts/test.bat | bat | mit | 279 |
@echo off
call raytracer.bat scene_tris.test
pause | jschmer/raytracer | scenes/render_scene_tris.bat | bat | mit | 51 |
@PUSHD "%~dp0" & "..\..\..\launcher.exe" "play-square1.ini" | Kroc/PortaDOOM | PortaDOOM/files/wads/SHAREWARE/square/play.bat | bat | mit | 59 |
# play video from Web-Camera number 0
darknet.exe detector demo data/voc.data yolo-voc.cfg yolo-voc.weights -c 0
pause | PatricLee/Darknet | build/darknet/x64/darknet_web_cam_voc.cmd | bat | mit | 121 |
java -jar "Engenharia.jar" | kstkelvin/shredder | Engenharia/dist/teste.bat | bat | epl-1.0 | 28 |
cmd_kernel/sched/built-in.o := arm-linux-androideabi-ld -EL -r -o kernel/sched/built-in.o kernel/sched/core.o kernel/sched/clock.o kernel/sched/idle_task.o kernel/sched/fair.o kernel/sched/rt.o kernel/sched/stop_task.o kernel/sched/sched_avg.o kernel/sched/cpupri.o
| hch-im/nexus4_kernel | kernel/sched/.built-in.o.cmd | bat | gpl-2.0 | 271 |
cmd_drivers/video/fb_notify.o := arm-eabi-gcc -Wp,-MD,drivers/video/.fb_notify.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 -Ia... | bigbiff/i717-GB-Kernel | drivers/video/.fb_notify.o.cmd | bat | gpl-2.0 | 24,586 |
cmd_sound/pci/mixart/built-in.o := rm -f sound/pci/mixart/built-in.o; ../tools/arm-bcm2708/arm-bcm2708hardfp-linux-gnueabi/bin/arm-bcm2708hardfp-linux-gnueabi-ar rcsD sound/pci/mixart/built-in.o
| avareldalton85/rpi2-linux-rt | sound/pci/mixart/.built-in.o.cmd | bat | gpl-2.0 | 196 |
cmd_drivers/usb/class/built-in.o := ccache /drive2/Android/CM9/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o drivers/usb/class/built-in.o drivers/usb/class/usblp.o
| tcp209/kernel_samsung_epic4gtouch | build/epic4gtouch/drivers/usb/class/.built-in.o.cmd | bat | gpl-2.0 | 193 |
cmd_fs/ext2/balloc.o := arm-linux-gnueabi-gcc -Wp,-MD,fs/ext2/.balloc.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/include -Wall -Wundef -Ws... | b8e5n/KTG-kernel_es209ra | fs/ext2/.balloc.o.cmd | bat | gpl-2.0 | 23,812 |
cmd_sound/pci/pcxhr/built-in.o := rm -f sound/pci/pcxhr/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 sound/pci/pcxhr/built-in.o
| FEDEVEL/tmp-imx6-tiny-rex-linux | sound/pci/pcxhr/.built-in.o.cmd | bat | gpl-2.0 | 222 |
cmd_drivers/media/common/built-in.o := /home/selva/android/kernel/Android_Toolchains/arm-eabi-4.4.3/bin/arm-eabi-ld -EL -r -o drivers/media/common/built-in.o drivers/media/common/tuners/built-in.o
| selva-simple/Galaxy-R-Kernel | drivers/media/common/.built-in.o.cmd | bat | gpl-2.0 | 202 |
cmd_fs/yaffs2/yaffs_mtdif2.o := /opt/arm-2008q1/bin/arm-none-linux-gnueabi-gcc -Wp,-MD,fs/yaffs2/.yaffs_mtdif2.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__KERN... | yohanes/Acer-BeTouch-E130-Linux-Kernel | fs/yaffs2/.yaffs_mtdif2.o.cmd | bat | gpl-2.0 | 21,977 |
echo ***********************************************************************
echo You need the free Info-Zip archiver to use this script
echo http://www.info-zip.org/
echo ***********************************************************************
@echo off
set curdir=%cd%
echo %cd%
set dest=%TEMP%\$AWB.tmp
if ... | svn2github/autowikibrowser | tags/REL_4_4_1/release.bat | bat | gpl-2.0 | 1,894 |
call ..\..\utilities\findMatlab.bat
if %ismatlab%==1 (
start "Matlab" /b %matexe% -r "configAndStartBatchSigProcBuffer;quit;" %matopts%
) else (
echo configAndStartBatchSigProcBuffer;quit; | start "Octave" /b %matexe% %matopts%
)
| jadref/buffer_bci | matlab/brainfly/startBatchSigProcBuffer.bat | bat | gpl-3.0 | 234 |
@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... | ereOn/azmq | doc/make.bat | bat | gpl-3.0 | 7,254 |
@echo off
CD \tank
draw 32pics\%1 99 66 32pics\%2
cd 32pics
1tox %1 3 2
dat
| jrouwe/TankArena | bat/d32.bat | bat | gpl-3.0 | 76 |
@echo off
setlocal
FOR /F "tokens=* USEBACKQ" %%F IN (`npm bin`) DO (
SET bin=%%F
)
SET "entry=main.js"
SET "outfile=bundle.js"
ECHO browserify %entry% --outfile %outfile%
cmd /c %bin%\browserify %entry% --outfile %outfile%
endlocal
| Announcement/Readerly | script/build.bat | bat | mpl-2.0 | 251 |
tsc @args.txt | GoToLoop/pjs-proto | compile.bat | bat | lgpl-3.0 | 13 |
@ECHO OFF
pushd %~dp0
REM Command file for Sphinx documentation
if "%SPHINXBUILD%" == "" (
set SPHINXBUILD=python -msphinx
)
set SOURCEDIR=.
set BUILDDIR=_build
set SPHINXPROJ=Itunder
if "%1" == "" goto help
%SPHINXBUILD% >NUL 2>NUL
if errorlevel 9009 (
echo.
echo.The Sphinx module was not found. Make sure you ... | ITU-DB-MANAGEMENT-HM/itunder-backend-rest | docs/make.bat | bat | apache-2.0 | 769 |
@echo off
rem
rem Copyright (c) Orient Technologies LTD (http://www.orientechnologies.com)
rem
server.bat -Ddistributed=true %CMD_LINE_ARGS%
| DiceHoldingsInc/orientdb | distributed/script/dserver.bat | bat | apache-2.0 | 148 |
::
:: Copyright (c) 2006-2008 Advanced Micro Devices, Inc. All Rights Reserved.
:: This software is subject to the Apache v2.0 License.
::
del /s *.ncb
del /s *.opt
del /s *.user
del /s /AH *.suo
rmdir /s /q build
rmdir /s /q Documentation\publish\html
rmdir /s /q Documentation\CSVToDox\Debug
pause
... | bfierz/sseplus | clean.bat | bat | apache-2.0 | 322 |
rem #------------------------------------------------------------------------------
rem # Copyright 2015 Esri
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://ww... | Esri/ops-server-config | Install/GeoEvent/InstallGeoEventPatches.bat | bat | apache-2.0 | 3,508 |
@echo off
perl -I%~dp0..\lib %~dp0package-plugin.pl %*
| gitpan/Gapp-App | bin/package-plugin.bat | bat | artistic-2.0 | 56 |
@echo off
rem
rem Installation script for CK packages.
rem
rem See CK LICENSE.txt for licensing details.
rem See CK Copyright.txt for copyright details.
rem
rem Developer(s): Grigori Fursin, 2015
rem
rem PACKAGE_DIR
rem INSTALL_DIR
rem Prepare targets
exit /b 0
echo.
echo Getting LLVM trunk from SVN
svn co http://... | ctuning/ck-env | package/compiler-llvm-trunk/process.bat | bat | bsd-3-clause | 1,919 |
@echo off
pushd %~dp0
"%VS120COMNTOOLS%..\IDE\mstest" /test:Microsoft.Protocols.TestSuites.MS_ASCMD.S04_FolderSync.MSASCMD_S04_TC08_FolderSync_UpdateFolder /testcontainer:..\..\MS-ASCMD\TestSuite\bin\Debug\MS-ASCMD_TestSuite.dll /runconfig:..\..\MS-ASCMD\MS-ASCMD.testsettings /unique
pause | XinwLi/Interop-TestSuites-1 | ExchangeActiveSync/Source/Scripts/MS-ASCMD/RunMSASCMD_S04_TC08_FolderSync_UpdateFolder.cmd | bat | mit | 290 |
javah -jni -classpath ../../.. se.mog.io.FileSystem
javah -jni -classpath ../../.. se.mog.io.WindowsFileSystem
gcc -g -I%JAVA_HOME%/include -I%JAVA_HOME%/include/win32 -c -g WindowsFileSystem.c
dllwrap --output-def FileSystem.def --add-stdcall-alias -oFileSystem.dll -s WindowsFileSystem.o
| zer0c0nf/DrFTPD | src/se/mog/io/jni.bat | bat | gpl-2.0 | 291 |
IF "%DevEnvDir%" == "" GOTO RETRYMSVCINIT
GOTO AFTERWARNING
:RETRYMSVCINIT
IF "%MSVCInitScriptName%" == "" GOTO WARNING
CALL %MSVCInitScriptName%
IF "%DevEnvDir%" == "" GOTO WARNING
GOTO AFTERWARNING
:WARNING
REM
REM Warning: It is recommended that you use the prompt started from the "Visual Studio Command Prompt" shor... | qingu/WRF-Libraries | src/mpich-3.0.1/test/mpi/testBuild.bat | bat | gpl-2.0 | 863 |
C:/VulkanSDK/1.1.126.0/Bin32/glslangValidator.exe -V tmpShader.vert
C:/VulkanSDK/1.1.126.0/Bin32/glslangValidator.exe -V tmpShader.frag
pause | Grahnen92/OGame | OGame/shaders/compile.bat | bat | gpl-3.0 | 141 |
@echo off
setlocal
rem sw tag
rem usage: svn_sw_tag xxx
if "%1" == "" goto ERROR
call %GLADIATOR_HOME%/Scripts/svn/_svn_repos_root.bat
svn sw %REPOS_ROOT%/tags/%1
goto END
:ERROR
echo !!!error happen!!!
echo usage: svn_sw_tag xxx
:END
endlocal
@echo on | hyller/GladiatorFirmware | Scripts/svn/svn_sw_tag.bat | bat | unlicense | 275 |
@echo off
@setlocal
set ERROR_CODE=0
set DIR=%CD%
if "%FrameworkDir%" == "" goto EnvError
where /q git
if %ERRORLEVEL%==1 goto GitError
if "%1"=="" goto ArgError
if "%2"=="" goto ArgError
if "%3"=="" goto ArgError
if "%4"=="" goto ArgError
set MAJOR=%1
set MINOR=%2
set PATCH=%3
set BUILD=%4
if not "%5"=="" (
set SPE... | OSSIndex/winaudit | build-release.cmd | bat | bsd-3-clause | 3,003 |
cd bin
for %%i in (*.exe) do (
%%i /linux-bash
)
cd .. | amethyst-asuka/GCModeller | GCModeller/install.bat | bat | gpl-3.0 | 60 |
python setup.py bdist_wininst --plat-name=win32 --install-script win_post_installation.py --user-access-control force
python setup.py bdist_wininst --plat-name=win-amd64 --install-script win_post_installation.py --user-access-control force
| sillvan/hyperspy | release_windows.bat | bat | gpl-3.0 | 244 |
@echo off
rem ==========================================================================
rem Shortcuts for various tasks, emulating UNIX "make" on Windows.
rem It is primarly intended as a shortcut for compiling / installing
rem psutil ("make.bat build", "make.bat install") and running tests
rem ("make.bat test").
rem... | cstipkovic/spidermonkey-research | python/psutil/make.bat | bat | mpl-2.0 | 6,642 |
@ECHO OFF
echo/|set /p=%CD%! | findstr source! >NUL 2>&1
if %ERRORLEVEL%==1 (
echo error: must be ran in javascript-source directory
exit /b %ERRORLEVEL%
)
where uglifyjs >NUL 2>&1
if %ERRORLEVEL%==1 (
echo error: uglifyjs is not in path
exit /b %ERRORLEVEL%
)
if "%~1"=="" (
echo "usage: uglify path\to\file... | stachu540/PhantomBot | development-resources/uglify.bat | bat | gpl-3.0 | 540 |
@ECHO OFF
REM Spawn this file as an Firefox executable on Windows.
node "%~dp0fake-firefox-binary.js" %*
| mozilla/web-ext | tests/functional/fake-firefox-binary.bat | bat | mpl-2.0 | 105 |
set version=3.0.2 | AnnaPeng/framework | Setup/version.cmd | bat | lgpl-2.1 | 17 |
@REM ----------------------------------------------------------------------------
@REM Licensed to the Apache Software Foundation (ASF) under one
@REM or more contributor license agreements. See the NOTICE file
@REM distributed with this work for additional information
@REM regarding copyright ownership. The ASF lice... | jackcmeyer/SmartSync | smartsync-api-gateway/mvnw.cmd | bat | mit | 5,034 |
@echo off
mkdir ..\include\Chalkboard
mkdir ..\include\Chalkboard\Win32
mkdir ..\include\Chalkboard\GTK
mkdir ..\include\Chalkboard\Cocoa
copy *.h ..\include\Chalkboard
copy Win32\*.h ..\include\Chalkboard\Win32
copy GTK\*.h ..\include\Chalkboard\GTK
copy Cocoa\*.h ..\include\Chalkboard\Cocoa
| partouf/Crosscables | libChalkboard/devmake.bat | bat | mit | 296 |
@echo off
setlocal enableDelayedExpansion
cd /d %~dp0
(
reg delete "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Command Processor" /v Autorun /f
reg add "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Command Processor" /v Autorun /d \"%cd%\init.cmd\"
mkdir logs
) >nul 2>nul
:: Generate init.cmd
(
echo:@echo off
echo:
... | matteyas/cmd-config | setup_cmd_autostart.cmd | bat | mit | 1,811 |
@ECHO OFF
SETLOCAL
REM Uncomment to forcibly set the build version.
REM set FORCE_VERSION=0.0.4-alpha4
IF NOT DEFINED DevEnvDir (
IF DEFINED vs120comntools (
set envsetup=call "%vs120comntools%\..\..\VC\vcvarsall.bat"
) else (
echo "VS120COMNTOOLS is not defined, aborting."
exit /b 1
... | bchavez/BugTrap | build.cmd | bat | mit | 6,669 |
@IF EXIST "%~dp0\node.exe" (
"%~dp0\node.exe" "%~dp0\node_modules\rc\index.js" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node "%~dp0\node_modules\rc\index.js" %*
) | johnson1994/Feed | rc.cmd | bat | mit | 184 |
docker-compose down
docker-compose pull symfony
docker-compose up -d
docker exec cinema_symfony php bin/console doctrine:database:create
docker exec cinema_symfony php bin/console doctrine:schema:update --complete --force
docker exec cinema_symfony php bin/console doctrine:fixtures:load -n
docker exec cinema_symfony ch... | J0hn-/polytech-cinema-server | install_and_run.bat | bat | mit | 335 |
cmd_scripts/kconfig/lxdialog/menubox.o := gcc -Wp,-MD,scripts/kconfig/lxdialog/.menubox.o.d -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -DCURSES_LOC="<ncurses.h>" -DLOCALE -c -o scripts/kconfig/lxdialog/menubox.o scripts/kconfig/lxdialog/menubox.c
source_scripts/kconfig/lxdialog/menubox... | FEDEVEL/tmp-imx6-tiny-rex-linux | scripts/kconfig/lxdialog/.menubox.o.cmd | bat | gpl-2.0 | 2,179 |
cmd_fs/ext4/ext4.o := /opt/toolchains/arm-2009q3/bin/arm-none-eabi-ld -EL -r -o fs/ext4/ext4.o fs/ext4/balloc.o fs/ext4/bitmap.o fs/ext4/dir.o fs/ext4/file.o fs/ext4/fsync.o fs/ext4/ialloc.o fs/ext4/inode.o fs/ext4/ioctl.o fs/ext4/namei.o fs/ext4/super.o fs/ext4/symlink.o fs/ext4/hash.o fs/ext4/resize.o fs/ext4/exte... | dizgustipated/BOCA-2.6.35.14 | fs/ext4/.ext4.o.cmd | bat | gpl-2.0 | 530 |
cmd_lib/div64.o := arm-eabi-gcc -Wp,-MD,lib/.div64.o.d -nostdinc -isystem /usr/bin/../lib/gcc/arm-eabi/4.5.0/include -Iinclude -I/home/jacob/source/wildfire-kernel/arch/arm/include -include include/linux/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-msm/include -Wall -Wundef -Wstrict-prototypes -Wno-trigrap... | HCDRJacob/wildfire-kernel | lib/.div64.o.cmd | bat | gpl-2.0 | 140,291 |
cmd_arch/arm/lib/copy_to_user.o := /usr/local/arm/arm-eabi-4.4.3/bin/arm-eabi-gcc -Wp,-MD,arch/arm/lib/.copy_to_user.o.d -nostdinc -isystem /usr/local/arm/arm-eabi-4.4.3/bin/../lib/gcc/arm-eabi/4.4.3/include -I/home/miamo/android/kernel/miamOv/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/g... | miamo/miamOv | arch/arm/lib/.copy_to_user.o.cmd | bat | gpl-2.0 | 2,132 |
cmd_net/core/flow.o := arm-linux-gnueabi-gcc -Wp,-MD,net/core/.flow.o.d -nostdinc -isystem /usr/lib/gcc/arm-linux-gnueabi/4.6/include -I/root/linux-jps/arch/arm/include -Iarch/arm/include/generated -Iinclude -include include/generated/autoconf.h -D__KERNEL__ -mlittle-endian -Iarch/arm/mach-rk30/include -Iarch/arm/pla... | jpsminix/minix5 | net/core/.flow.o.cmd | bat | gpl-2.0 | 26,555 |
cmd_net/ipv4/tcp.o := arm-none-linux-gnueabi-gcc -Wp,-MD,net/ipv4/.tcp.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-davi... | srinugnt2000/linux-2.6.37 | net/ipv4/.tcp.o.cmd | bat | gpl-2.0 | 33,615 |
cmd_arch/arm/lib/strncpy_from_user.o := /Volumes/Passport/kernel/nexus4/msm/scripts/gcc-wrapper.py arm-linux-androideabi-gcc -Wp,-MD,arch/arm/lib/.strncpy_from_user.o.d -nostdinc -isystem /Volumes/Passport/kernel/nexus4/msm/arm-linux-androideabi-4.6/bin/../lib/gcc/arm-linux-androideabi/4.6.x-google/include -I/Volumes/... | hch-im/nexus4_kernel | arch/arm/lib/.strncpy_from_user.o.cmd | bat | gpl-2.0 | 2,360 |
cmd_sound/pci/riptide/built-in.o := rm -f sound/pci/riptide/built-in.o; /home/hacker/codesourcery/lite/bin/arm-none-linux-gnueabi-ar rcs sound/pci/riptide/built-in.o
| wujiku/superstar-kernel-shooter-2.3.4gb | sound/pci/riptide/.built-in.o.cmd | bat | gpl-2.0 | 167 |
cmd_drivers/message/fusion/built-in.o := ld -m elf_i386 -r -o drivers/message/fusion/built-in.o drivers/message/fusion/mptbase.o drivers/message/fusion/mptscsih.o drivers/message/fusion/mptspi.o
| namgk/kernel-tut | drivers/message/fusion/.built-in.o.cmd | bat | gpl-2.0 | 199 |
cmd_kernel/irq/built-in.o := /home/spacecaker/CodeSourcery/Sourcery_CodeBench_Lite_for_ARM_EABI/bin/arm-none-eabi-ld -EL -r -o kernel/irq/built-in.o kernel/irq/handle.o kernel/irq/manage.o kernel/irq/spurious.o kernel/irq/resend.o kernel/irq/chip.o kernel/irq/devres.o kernel/irq/autoprobe.o kernel/irq/proc.o kernel... | spacecaker/Stock_spacecaker_kernel | kernel/irq/.built-in.o.cmd | bat | gpl-2.0 | 331 |
cmd_fs/debugfs/built-in.o := /home/gabe/arm-2009q3/arm-2009q3/bin/arm-none-linux-gnueabi-ld -EL -r -o fs/debugfs/built-in.o fs/debugfs/debugfs.o
| dagnarf/sgh-i717-dagkernel | fs/debugfs/.built-in.o.cmd | bat | gpl-2.0 | 150 |
@ECHO OFF
IF NOT "%~f0" == "~f0" GOTO :WinNT
@"F:\atomicApe\babun\cygwin\home\bananas\Ruby22\bin\ruby.exe" "F:/atomicApe/babun/cygwin/home/bananas/Ruby22/bin/scss" %1 %2 %3 %4 %5 %6 %7 %8 %9
GOTO :EOF
:WinNT
@"F:\atomicApe\babun\cygwin\home\bananas\Ruby22\bin\ruby.exe" "%~dpn0" %*
| justathoughtor2/atomicApe | cygwin/bin/scss.bat | bat | gpl-3.0 | 282 |
python.exe ddas.ser.2.file.py COM57 115200
| itahoe/ddas.py | ddas/ddas_ser_plot/ddas.ser.2.file.bat | bat | gpl-3.0 | 44 |
echo off
rem ##############################
rem # Configure serverbased yaio
rem ##############################
rem set Path
set YAIOCONFIGPATH=%BASEPATH%\..\config\
set YAIOSCRIPTPATH=%BASEPATH%\..\sbin\
rem TODO
set YAIOAPP=%BASEPATH%..\dist\yaio-metaextract-service-full.jar
set APPPROPAGATOR=%BASEPATH%..\sbin\apppr... | das-praktische-schreinerlein/yaio-metaextract-service | config/config-server.bat | bat | mpl-2.0 | 788 |
set DIRSRC=.\src
set DIREXE=.\exe
set DIRXPDF= xpdf_3.01\xpdf
set DIRGOO=xpdf_3.01\goo
set DIRFOFI=xpdf_3.01\fofi
set DIRLIBXML=libxml2-2.6.19+.win32
set DIRICONV=iconv-1.9.1.win32
set CC=c:\mingw\bin\gcc.exe
set CFLAGS=-g -O2 -I %DIRSRC% -I %DIRFOFI% -I %DIRGOO%
set CXX=c:\mingw\bin\g++.exe
set CXXFLAGS=%CFLAGS%
set... | pombredanne/paperpile | c/pdf2xml/make.bat | bat | agpl-3.0 | 1,109 |
cls
REM µÚ1´ÎÓÅ»¯jar
java -jar ..\..\..\..\proguard.jar @ÓÅ»¯jar.pro
copy .\org.hzs.ͼÏñ.jar .\dist\org.hzs.ͼÏñ.jar
del .\org.hzs.ͼÏñ.jar
cls
REM µÚ2´ÎÓÅ»¯jar
java -jar ..\..\..\..\proguard.jar @ÓÅ»¯jar.pro
copy .\org.hzs.ͼÏñ.jar .\dist\org.hzs.ͼÏñ.jar
del .\org.hzs.ͼÏñ.jar
cls
REM µÚ3´ÎÓÅ»¯jar
java -j... | MaOrKsSi/HZS.Durian | 增强/org.hzs.图像/优化.bat | bat | lgpl-3.0 | 1,018 |
del %1\autoexec.cfg
del %1\prac.cfg
del %1\surf.cfg
mklink /H %1\autoexec.cfg .\autoexec.cfg
mklink /H %1\prac.cfg .\prac.cfg
mklink /H %1\surf.cfg .\surf.cfg | waldfee/cfgs | csgo/bootstrap.cmd | bat | unlicense | 165 |
echo off
rem *********************************
rem * Copyright 2018 Gabriele Maris *
rem * Mauxilium Project *
rem *********************************
cd ./Libraries
for %%x in ("MauxArConnector", "MauxConfig", "MauxConnector", "MauxController", "MauxFile", "MauxLogger", "MauxModel", "MauxSGraphic", "MauxI... | Mauxilium/Maux | Java_libraries_full_clean.bat | bat | apache-2.0 | 426 |
@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 (th... | aliyun-beta/aliyun-oss-hadoop-fs | hadoop-yarn-project/hadoop-yarn/bin/yarn.cmd | bat | apache-2.0 | 11,376 |
@echo off
set path=%path%;C:/Windows/Microsoft.NET/Framework/v4.0.30319;
set version=3.5.0
set skipBuild=false
set skipTests=false
set skipCopyingBuiltAssemblies=false
set skipDependentPackagesVersionsUpdate=false
set skipCreatingNuGetPackages=false
set skipPublishing=false
call publish_common.cmd
pause | SmartElk/Antler | build/publish_local.cmd | bat | apache-2.0 | 306 |
@echo off
REM ---------------------------------------------------------------------------
REM Copyright (c) 2019, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
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 ... | wso2/carbon-kernel | features/org.wso2.carbon.server.feature/resources/bin/spi-provider.bat | bat | apache-2.0 | 2,407 |
set CP=%JAVA_HOME%\jre\lib\rt.jar;../../lib/gloze.jar
set CP=%CP%;%JENA_HOME%\lib\xercesImpl.jar;%JENA_HOME%\lib\jena.jar;%JENA_HOME%\lib\commons-logging-1.1.1.jar;%JENA_HOME%\lib\icu4j_3_4.jar;%JENA_HOME%\lib\log4j-1.2.12.jar;%JENA_HOME%\lib\iri.jar
java -cp %CP% -Dgloze.target=. -Dgloze.verbose=true -Dgloze.base=... | stevebattle/Gloze | samples/namespaces/lift.bat | bat | apache-2.0 | 406 |
set ECLIPSE_HOME=C:\eclipse
set JAVA_HOME=D:\SAP\Eclipse\Luna\eclipse.exe
start "eclipse" "%ECLIPSE_HOME%\eclipse.exe" -vm "%JAVA_HOME%\bin\javaw.exe" -data . | asmalex/FioriStockPlugin | Docs/eclipse.bat | bat | apache-2.0 | 159 |
set JAVA_HOME=c:\Program Files\Java\jdk1.8.0_65\
set PATH=c:\Program Files\Java\jdk1.8.0_65\bin
java -cp "../Conquest/bin/;../Conquest-Tournament/bin;../Conquest-Tournament/lib/*" conquest.tournament.ConquestTableConsole -t ./results/fights -s results-summary.csv | kefik/conquest-engine-gui | Conquest-Competition/summarize.bat | bat | apache-2.0 | 264 |
c:\TCPU59\utils\distrib\putty\pscp.exe -l pwadm -pw secret %cd%\%1 ehd-app-test:/u01/informatica/server/infa_shared/CmdFiles/%2 | mishin/presentation | 4_trans/copy_file_to_unix.bat | bat | apache-2.0 | 127 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.