Last active
February 12, 2018 16:23
-
-
Save 27Cobalter/95fe0f93a9118ecb995b8a6f6e661530 to your computer and use it in GitHub Desktop.
マイクラサーバをいい感じに起動するやつ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
set SERVERSDIR=E:\Game\minecraft\Server\ | |
chcp 65001 | |
cd /d %SERVERSDIR% | |
for /F "delims=*" %%a in ('dir /b ^| peco') do @set SERVERNAME=%%a | |
cd "%SERVERNAME%" | |
chcp 932 | |
start.bat |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment