Skip to content

Instantly share code, notes, and snippets.

@sonsongithub
Created December 17, 2019 05:45
Show Gist options
  • Select an option

  • Save sonsongithub/990edf07d3bdba66b37f475141b75d15 to your computer and use it in GitHub Desktop.

Select an option

Save sonsongithub/990edf07d3bdba66b37f475141b75d15 to your computer and use it in GitHub Desktop.
Fix problems of fonts in PDF made by macOS.
#!/bin/bash
#
# https://qiita.com/yasulab/items/49511c27179be454d568
#
if [ $# -ne 1 ]; then
echo "Usage: $0 <path to pdf file>" 1>&2
exit 1
fi
LANG=C LC_ALL=C sed -i '' s'|/Registry (Adobe) /Ordering (Japan1) /Supplement [0-9]|/Registry(Adobe) /Ordering(Identity) /Supplement 0|g' $1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment