diff --git a/README.md b/README.md new file mode 100644 index 0000000..b68f6cb --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# Shortcuts + +A collection of shortcuts that I use. + +1. [zipignore](zipignore.bat) - A 7zip shortcut to zip a folder taking a gitignore into account. \ No newline at end of file diff --git a/zipignore.bat b/zipignore.bat new file mode 100644 index 0000000..83fa02f --- /dev/null +++ b/zipignore.bat @@ -0,0 +1,4 @@ +@echo off + +call "C:\Program Files\7-Zip\7z.exe" "a" ^ +"-xr@.gitignore" "-tzip" "result.zip" %1 \ No newline at end of file