14 lines
194 B
Batchfile
14 lines
194 B
Batchfile
|
@echo off
|
||
|
setlocal
|
||
|
|
||
|
if "%1" == "--help" (
|
||
|
echo Usage: rbenv commands
|
||
|
echo.
|
||
|
echo List all available rbenv commands
|
||
|
echo.
|
||
|
EXIT /B
|
||
|
)
|
||
|
|
||
|
rem Implementation of this command is in the rbenv.vbs file .
|
||
|
|