Skip to content

Instantly share code, notes, and snippets.

@coskuntekin
Last active May 29, 2023 02:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coskuntekin/92853fa0caeae77e9723f78bde455e40 to your computer and use it in GitHub Desktop.
Save coskuntekin/92853fa0caeae77e9723f78bde455e40 to your computer and use it in GitHub Desktop.
Compress folders
for dir in *; do
tar -czvf $dir.tgz --exclude='node_modules' "$dir"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment