Skip to content

Instantly share code, notes, and snippets.

@cmpadden
Created May 1, 2024 02:38
Show Gist options
  • Save cmpadden/f45656d2061d30e87663465753c42b81 to your computer and use it in GitHub Desktop.
Save cmpadden/f45656d2061d30e87663465753c42b81 to your computer and use it in GitHub Desktop.
Export Apple Books ePubs
#!/bin/bash
destination="/Users/colton/Desktop/Library"
mkdir -p "$destination"
cd /Users/colton/Library/Mobile Documents/iCloud~com~apple~iBooks/Documents
for i in *.epub; do
pushd "$i"
zip --quiet -X0 "$destination/$i" mimetype
zip --quiet -rDX9 "$destination/$i" * -x "*.DS_Store" -x mimetype
popd
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment