text
stringlengths
0
834k
ECHO %prog% 5 ^&^& dir
GOTO :EOF
",15.7428571429,73,0.6715063521
329,d031eb65c6e3f2ef01fee9e95975acbc96fc559f,94,bat,Batchfile,localization/pipeline/arm_position/run-tests.bat,johnnyzhang295/MMGIS,d0ef1d5a70e70dbc6a9e2c3ae928a26465cf9d3b,['Apache-2.0'],63.0,2019-03-28T18:46:55.000Z,2022-03-25T02:49:24.000Z,localization/pipeline/arm_position/run-tests.bat,johnnyzhang295/MMGIS,d0ef1d5a70e70dbc6a9e2c3ae928a26465cf9d3b,['Apache-2.0'],75.0,2019-10-14T08:54:18.000Z,2022-03-30T02:33:29.000Z,localization/pipeline/arm_position/run-tests.bat,johnnyzhang295/MMGIS,d0ef1d5a70e70dbc6a9e2c3ae928a26465cf9d3b,['Apache-2.0'],15.0,2019-12-15T11:26:01.000Z,2022-03-25T02:49:27.000Z,"@echo off
rem Discover and run all unit tests in the project
python -m unittest discover
",18.8,51,0.7553191489
330,d0322dea2301c678bf798b2806ac10e56a99d775,925,bat,Batchfile,copy-dlls.bat,borisblizzard/classtools,0a28dc5df22435a3adcad75a89f0aaee2589a47d,['BSD-3-Clause'],,,,copy-dlls.bat,borisblizzard/classtools,0a28dc5df22435a3adcad75a89f0aaee2589a47d,['BSD-3-Clause'],,,,copy-dlls.bat,borisblizzard/classtools,0a28dc5df22435a3adcad75a89f0aaee2589a47d,['BSD-3-Clause'],,,,"xcopy ClassTools.ClassMaker\bin\Release\ClassTools.Data.dll CppBinSerializerGenerator /q /y
xcopy ClassTools.ClassMaker\bin\Release\ClassTools.IPlugin.dll CppBinSerializerGenerator /q /y
xcopy ClassTools.ClassMaker\bin\Release\ClassTools.Data.dll CppLiteser2DatabaseDumper /q /y
xcopy ClassTools.ClassMaker\bin\Release\ClassTools.IPlugin.dll CppLiteser2DatabaseDumper /q /y
xcopy ClassTools.ClassMaker\bin\Release\ClassTools.Data.dll CppLiteserCodeGenerator /q /y
xcopy ClassTools.ClassMaker\bin\Release\ClassTools.IPlugin.dll CppLiteserCodeGenerator /q /y
xcopy ClassTools.ClassMaker\bin\Release\ClassTools.Data.dll CppLiteserDatabaseDumper /q /y
xcopy ClassTools.ClassMaker\bin\Release\ClassTools.IPlugin.dll CppLiteserDatabaseDumper /q /y
xcopy ClassTools.ClassMaker\bin\Release\ClassTools.Data.dll CppSourceGenerator /q /y
xcopy ClassTools.ClassMaker\bin\Release\ClassTools.IPlugin.dll CppSourceGenerator /q /y
",84.0909090909,95,0.8486486486
331,d03242623be16192e1fc95d4f6d832aefe064a07,35,bat,Batchfile,compile.bat,wicherska/song-list-application,6749ed35c373238cc48a45637776f1f6a0ae8f93,['Apache-2.0'],,,,compile.bat,wicherska/song-list-application,6749ed35c373238cc48a45637776f1f6a0ae8f93,['Apache-2.0'],,,,compile.bat,wicherska/song-list-application,6749ed35c373238cc48a45637776f1f6a0ae8f93,['Apache-2.0'],,,,"@echo off
./mvnw.cmd clean package",11.6666666667,24,0.7428571429
332,d0325e944d927e393a24d3ee078999ad6f931b55,227,cmd,Batchfile,additional/Docker_cmd/PGAdminDockerStart.cmd,Waanneek/mediasoft_test,6a6f168a6c8f5e6759e11706223248bc4f4513ea,['MIT'],,,,additional/Docker_cmd/PGAdminDockerStart.cmd,Waanneek/mediasoft_test,6a6f168a6c8f5e6759e11706223248bc4f4513ea,['MIT'],,,,additional/Docker_cmd/PGAdminDockerStart.cmd,Waanneek/mediasoft_test,6a6f168a6c8f5e6759e11706223248bc4f4513ea,['MIT'],,,,"docker run --rm ^
--name myPGAdmin ^
-p 80:80 -p 443:443^
-e ""PGADMIN_DEFAULT_EMAIL=user@domain.com"" ^
-e ""PGADMIN_DEFAULT_PASSWORD=SuperSecret"" ^
-v C:\PGAdmin:/var/lib/pgadmin ^
-d dpage/pgadmin4
pause",28.375,48,0.6519823789
333,d0326c34871493c8850e08bbe3fc3106abd6e9b7,1075,bat,Batchfile,tools/setup_for_hacking.bat,gerbal/tailor,e5e4fc58b6136fd516b31511dfca9d77e8752c5d,['MIT'],27.0,2015-01-11T22:44:01.000Z,2021-11-08T10:21:51.000Z,tools/setup_for_hacking.bat,caiotoon/brackets,e664a00d092a6618361b99ec5eadd4f4d018440b,['MIT'],,,,tools/setup_for_hacking.bat,caiotoon/brackets,e664a00d092a6618361b99ec5eadd4f4d018440b,['MIT'],9.0,2015-04-06T19:33:11.000Z,2020-08-19T14:45:51.000Z,"@ECHO OFF
REM - Use full path of this batch file to determine root directory
set root_path=%~f0
set root_path=%root_path:~0,-27%
REM - Check for parameter
IF %1.==. GOTO Error
REM - Check for OS. This script works in Vista or later.
ver | findstr /i ""5\.1\."" > nul
IF %ERRORLEVEL% EQU 0 GOTO XPNotSupported
REM - Remove existing 'dev' directory (if present)
if exist %1\dev rmdir %1\dev
REM - Make symlink
REM (doesn't work on XP - see instructions below)
mklink /d %1\dev %root_path%
GOTO Exit
:Error
ECHO Usage: setup_for_hacking.bat application_path
ECHO Setup Brackets to use the HTML/CSS/JS files pulled from GitHub.
ECHO Parameters: application_path - path that contains the Brackets application
ECHO Example: setup_for_hacking.bat ""c:\Program Files (x86)\Brackets Sprint 14""
GOTO Exit
:XPNotSupported
ECHO Sorry, this script doesn't run in Windows XP.
ECHO To enable hacking, use the junction tool (http://technet.microsoft.com/en-us/sysinternals/bb896768)
ECHO as follows: junction.exe %1\dev %root_path%
ECHO (in the folder containing Brackets.exe)
:Exit
",29.0540540541,104,0.76
334,d03277eff2b74ece03a46069db199863885d09ea,241,bat,Batchfile,src/tools/msvc/install.bat,tsos7/postgres,f2690338814738967d75cc1e35cc1cfac1a40710,['PostgreSQL'],9778.0,2015-01-01T09:18:15.000Z,2022-03-31T14:44:15.000Z,src/tools/msvc/install.bat,tsos7/postgres,f2690338814738967d75cc1e35cc1cfac1a40710,['PostgreSQL'],9369.0,2015-10-28T07:48:01.000Z,2022-03-31T23:56:42.000Z,src/tools/msvc/install.bat,tsos7/postgres,f2690338814738967d75cc1e35cc1cfac1a40710,['PostgreSQL'],3719.0,2015-01-03T00:36:28.000Z,2022-03-31T08:15:42.000Z,"@echo off
REM src/tools/msvc/install.bat
REM all the logic for this now belongs in install.pl. This file really
REM only exists so you don't have to type ""perl install.pl""
REM Resist any temptation to add any logic here.
@perl install.pl %*
",34.4285714286,70,0.7676348548
335,d032899b0fb4052e66b626b7ed6d8fc6e2d4f486,10,cmd,Batchfile,i.cmd,Dmitriy7Smirnov/filesUploader,92c92e22e30bdc0cce26447632ddafe162a663cf,['MIT'],,,,i.cmd,Dmitriy7Smirnov/filesUploader,92c92e22e30bdc0cce26447632ddafe162a663cf,['MIT'],,,,i.cmd,Dmitriy7Smirnov/filesUploader,92c92e22e30bdc0cce26447632ddafe162a663cf,['MIT'],,,,iex -S mix,10.0,10,0.7
336,d03298b4f033424baddcfd8522847f6956de3191,45,bat,Batchfile,open_all.bat,2CATteam/AmbigramGenerator,ad21dab4ea8cafd6571d3f21b1e3d16f79a17527,['MIT'],1.0,2020-11-27T18:02:13.000Z,2020-11-27T18:02:13.000Z,open_all.bat,2CATteam/AmbigramGenerator,ad21dab4ea8cafd6571d3f21b1e3d16f79a17527,['MIT'],,,,open_all.bat,2CATteam/AmbigramGenerator,ad21dab4ea8cafd6571d3f21b1e3d16f79a17527,['MIT'],,,,For /R .\letters\ %%G in (*.svg) do start %%G,45.0,45,0.5555555556
337,d032d04e086ef42d6a0e51f861a687f1dc6eb1c3,944,bat,Batchfile,Labs/05-counter/counter/counter.sim/sim_1/behav/xsim/simulate.bat,PetrDvorak221465/Digital-electronics-1,016d3b85338adc343967e01a2ad525ccc5e6f88e,['MIT'],,,,Labs/05-counter/counter/counter.sim/sim_1/behav/xsim/simulate.bat,PetrDvorak221465/Digital-electronics-1,016d3b85338adc343967e01a2ad525ccc5e6f88e,['MIT'],,,,Labs/05-counter/counter/counter.sim/sim_1/behav/xsim/simulate.bat,PetrDvorak221465/Digital-electronics-1,016d3b85338adc343967e01a2ad525ccc5e6f88e,['MIT'],,,,"@echo off
REM ****************************************************************************
REM Vivado (TM) v2020.2 (64-bit)
REM
REM Filename : simulate.bat
REM Simulator : Xilinx Vivado Simulator
REM Description : Script for simulating the design by launching the simulator
REM
REM Generated by Vivado on Mon Mar 15 22:19:34 +0100 2021
REM SW Build 3064766 on Wed Nov 18 09:12:45 MST 2020
REM
REM Copyright 1986-2020 Xilinx, Inc. All Rights Reserved.
REM
REM usage: simulate.bat
REM
REM ****************************************************************************
REM simulate design
echo ""xsim tb_cnt_up_down_behav -key {Behavioral:sim_1:Functional:tb_cnt_up_down} -tclbatch tb_cnt_up_down.tcl -log simulate.log""
call xsim tb_cnt_up_down_behav -key {Behavioral:sim_1:Functional:tb_cnt_up_down} -tclbatch tb_cnt_up_down.tcl -log simulate.log
if ""%errorlevel%""==""0"" goto SUCCESS
if ""%errorlevel%""==""1"" goto END
:END
exit 1
:SUCCESS