text stringlengths 0 834k |
|---|
copy /Y ..\..\curly\src\*.xba ..\oxt\curly_en-GB\ |
",22.5,50,0.5222222222 |
369,d03750381e4f76243c5507c03a5602c89841109d,1025,cmd,Batchfile,iam/IAMCli-1.5.0/bin/iam-userlistkeys.cmd,bizo/aws-tools,a736e585edca0b84c36b0e2a11e056457bf47a65,['Apache-2.0'],,,,iam/IAMCli-1.5.0/bin/iam-userlistkeys.cmd,bizo/aws-tools,a736e585edca0b84c36b0e2a11e056457bf47a65,['Apache-2.0'],,,,iam/IAMCli-1.5.0/bin/iam... |
setlocal |
REM Copyright 2006-2011 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the |
REM Amazon Software License (the ""License""). You may not use this file except in compliance with the License. A copy of the |
REM License is located at http://aws.amazon.com/asl or in the ""license"" file accompanying this file. This file is distributed on an ""AS |
REM IS"" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific |
REM language governing permissions and limitations under the License. |
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=_%AWS_IAM_HOME% |
if ""%CHK_HOME:""=%"" == ""_"" goto HOME_MISSING |
""%AWS_IAM_HOME:""=%\bin\iam-cmd"" UserListKeysView %* |
goto DONE |
:HOME_MISSING |
echo AWS_IAM_HOME is not set |
exit /b 1 |
:DONE |
",39.4230769231,136,0.7765853659 |
370,d0375ff23ae0d8474710433cc6a5d5f3987bc5b7,12,cmd,Batchfile,debhello-0.0-pkg2/step308.cmd,debiancn/debmake-doc,edf0b912e4312da2b084eb128fa9ea7f90e461e4,['MIT'],4.0,2017-04-28T06:10:14.000Z,2021-05-18T06:30:25.000Z,debhello-0.0-pkg2/step308.cmd,debiancn/debmake-doc,edf0b912e4312da2b084eb128fa9ea7f90e461e4,['MIT'],1.0,... |
cd .. |
",4.0,5,0.3333333333 |
371,d037849b4a211c407874ff0f15b5c9083089e904,258,bat,Batchfile,.webrick.bat,headvroom/englishextra.github.io,69a154019525a6a5e898cc9bc605eb367ed4d706,['MIT'],1.0,2018-12-29T20:20:06.000Z,2018-12-29T20:20:06.000Z,.webrick.bat,headvroom/englishextra.github.io,69a154019525a6a5e898cc9bc605eb367ed4d706,['MIT'],,,,.webrick.b... |
:: echo %~dp0 will return path to batch location. echo %~f0 will return path to the batch with filename |
:: ruby -run -e httpd ""%~dp0/"" -p 8080 |
ruby -run -e httpd ""%~dp0/"" -p 8080 |
pause |
",36.8571428571,103,0.7209302326 |
372,d037fe8539e01486c3c35572703f90d10bd37c3b,51,cmd,Batchfile,publish.cmd,UliPlabst/CouchDB.Client,4413fb63f020be0334f86d51da72cbad59e194be,['MIT'],10.0,2018-05-03T08:05:59.000Z,2021-05-20T06:21:48.000Z,publish.cmd,UliPlabst/CouchDB.Client,4413fb63f020be0334f86d51da72cbad59e194be,['MIT'],1.0,2017-11-12T00:09:58.000Z,20... |
373,d03868dd86701ef38e997aba7c08ff729b7734c3,4548,bat,Batchfile,packaged/bin/evaluator.bat,oapio/raptor-coding-task,5e9a45c63e139b48d0957c7f34136c9b0ed80b2d,['Apache-2.0'],,,,packaged/bin/evaluator.bat,oapio/raptor-coding-task,5e9a45c63e139b48d0957c7f34136c9b0ed80b2d,['Apache-2.0'],,,,packaged/bin/evaluator.bat,oapio/r... |
@REM |
@REM Environment: |
@REM JAVA_HOME - location of a JDK home dir (optional if java on path) |
@REM CFG_OPTS - JVM options (optional) |
@REM Configuration: |
@REM EVALUATOR_config.txt found in the EVALUATOR_HOME. |
@setlocal enabledelayedexpansion |
@echo off |
if ""%EVALUATOR_HOME%""=="""" set ""EVALUATOR_HOME=%~dp0\\.."" |
set ""APP_LIB_DIR=%EVALUATOR_HOME%\lib\"" |
rem Detect if we were double clicked, although theoretically A user could |
rem manually run cmd /c |
for %%x in (!cmdcmdline!) do if %%~x==/c set DOUBLECLICKED=1 |
rem FIRST we load the config file of extra options. |
set ""CFG_FILE=%EVALUATOR_HOME%\EVALUATOR_config.txt"" |
set CFG_OPTS= |
if exist ""%CFG_FILE%"" ( |
FOR /F ""tokens=* eol=# usebackq delims="" %%i IN (""%CFG_FILE%"") DO ( |
set DO_NOT_REUSE_ME=%%i |
rem ZOMG (Part #2) WE use !! here to delay the expansion of |
rem CFG_OPTS, otherwise it remains """" for this loop. |
set CFG_OPTS=!CFG_OPTS! !DO_NOT_REUSE_ME! |
) |
) |
rem We use the value of the JAVACMD environment variable if defined |
set _JAVACMD=%JAVACMD% |
if ""%_JAVACMD%""=="""" ( |
if not ""%JAVA_HOME%""=="""" ( |
if exist ""%JAVA_HOME%\bin\java.exe"" set ""_JAVACMD=%JAVA_HOME%\bin\java.exe"" |
) |
) |
if ""%_JAVACMD%""=="""" set _JAVACMD=java |
rem Detect if this java is ok to use. |
for /F %%j in ('""%_JAVACMD%"" -version 2^>^&1') do ( |
if %%~j==java set JAVAINSTALLED=1 |
if %%~j==openjdk set JAVAINSTALLED=1 |
) |
rem BAT has no logical or, so we do it OLD SCHOOL! Oppan Redmond Style |
set JAVAOK=true |
if not defined JAVAINSTALLED set JAVAOK=false |
if ""%JAVAOK%""==""false"" ( |
echo. |
echo A Java JDK is not installed or can't be found. |
if not ""%JAVA_HOME%""=="""" ( |
echo JAVA_HOME = ""%JAVA_HOME%"" |
) |
echo. |
echo Please go to |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.