Skip to content

Instantly share code, notes, and snippets.

@stefanDeveloper
Created January 23, 2018 16:19
Show Gist options
  • Save stefanDeveloper/860f70b512bf707e319882ab2b7bc9dc to your computer and use it in GitHub Desktop.
Save stefanDeveloper/860f70b512bf707e319882ab2b7bc9dc to your computer and use it in GitHub Desktop.
Create biber bibliography
@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