Horje
batch file with flags Code Example
batch file with flags
FOR %%A IN (%*) DO (
    IF "%%A"=="/r" ECHO You passed the /r flag.
)
batch file with flags
:processargs
SET ARG=%1
IF DEFINED ARG (
    IF "%ARG%"=="/r" ECHO You passed the /r flag.
    SHIFT
    GOTO processargs
)




Shell

Related
stable-download/java/spigot_command/run.bat Code Example stable-download/java/spigot_command/run.bat Code Example
how to install a specific docker version on centos machine Code Example how to install a specific docker version on centos machine Code Example
pip install ldap-utils for ldapsearch Code Example pip install ldap-utils for ldapsearch Code Example
how to install deface makers for ubuntu Code Example how to install deface makers for ubuntu Code Example
uninstall chrome apps Code Example uninstall chrome apps Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9