Skip to content

Instantly share code, notes, and snippets.

@ceremcem
Created July 15, 2016 12:45
Show Gist options
  • Save ceremcem/2aac317e77505f47be0c683d7aa48c60 to your computer and use it in GitHub Desktop.
Save ceremcem/2aac317e77505f47be0c683d7aa48c60 to your computer and use it in GitHub Desktop.
Zip target folder with the same name
#!/bin/bash
FOLDER=$1
zip -r "${FOLDER%/}.zip" "${FOLDER%/}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment