6 lines
140 B
Batchfile
6 lines
140 B
Batchfile
@echo off
|
|
set /P key=Please input key and press Enter:
|
|
if "%key%"=="" set key=0
|
|
node.exe "%~dp0src\index.js" acb2hcas -d -k %key% %*
|
|
pause
|