chore: Add click-to-run scripts

This commit is contained in:
oSumAtrIX
2024-10-19 06:35:25 +02:00
parent 504c6c1ea5
commit e87ee9c5b8
19 changed files with 284 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
@echo off
setlocal
if "%~1"=="" (
set INVALID_ARGS=true
)
if defined INVALID_ARGS (
echo Creates a directory using the mkdir command.
echo:
echo Usage: create ^<path^>
echo Example: create C:/revanced
exit /b 1
)
set DIRECTORY=%1
if not exist %DIRECTORY% (
run "mkdir.exe" -p %DIRECTORY%
)