Created
January 23, 2018 16:19
-
-
Save stefanDeveloper/860f70b512bf707e319882ab2b7bc9dc to your computer and use it in GitHub Desktop.
Create biber bibliography
This file contains 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 | |
ECHO Enter Tex name: | |
SET /p input="" | |
GOTO check | |
:check | |
IF "%input%" == "" ( | |
ECHO Input is empty | |
GOTO exit | |
) ELSE ( | |
GOTO create | |
) | |
:create | |
biber %input% | |
ECHO Successfully created | |
:exit | |
PAUSE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment