Skip to content

Instantly share code, notes, and snippets.

@dungwinux
Created April 6, 2018 08:22
Show Gist options
  • Save dungwinux/a97c45f0b160155d262f9328928e45b8 to your computer and use it in GitHub Desktop.
Save dungwinux/a97c45f0b160155d262f9328928e45b8 to your computer and use it in GitHub Desktop.
Competitive quick deploy
@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%
@dungwinux
Copy link
Author

Require 7-Zip by Igor Pavlov.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment