The clean & modern RSS server that doesn't give you any crap. https://thearsse.com/
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

21 行
394 B

@echo off
setlocal
set base=%~dp0
set roboCommand=%1
rem get all arguments except the first
shift
set "args="
:parse
if "%~1" neq "" (
set args=%args% %1
shift
goto :parse
)
if defined args set args=%args:~1%
if "%1"=="clean" (
call "%base%vendor-bin\robo\vendor\bin\robo" "%roboCommand%" %args%
) else (
call "%base%vendor-bin\robo\vendor\bin\robo" "%roboCommand%" -- %args%
)