Skip to content

Instantly share code, notes, and snippets.

@Sarverott
Created November 7, 2023 08:12
Show Gist options
  • Save Sarverott/26570ba71c9d4bcc876ecee19bbbabe1 to your computer and use it in GitHub Desktop.
Save Sarverott/26570ba71c9d4bcc876ecee19bbbabe1 to your computer and use it in GitHub Desktop.
#!/bin/sh
# written to transfer big audiobook library
find . -type d -maxdepth 1 -not -name "." -exec sh -c "zip -r \$(echo {} | tr ' ' '_').zip \"{}\" " \;
# it seams handy in future
@Sarverott
Copy link
Author

directories containing some chars are not replaced by "tr"

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