Created
April 6, 2018 08:22
-
-
Save dungwinux/a97c45f0b160155d262f9328928e45b8 to your computer and use it in GitHub Desktop.
Competitive quick deploy
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 /p name="Archive Name: " | |
mkdir %name% | |
REM VVV Change cpp to file extension you want | |
copy *.cpp %name% | |
7z a %name%.zip %name%/ | |
rmdir /S /Q %name% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Require 7-Zip by Igor Pavlov.