Created
December 17, 2019 05:45
-
-
Save sonsongithub/990edf07d3bdba66b37f475141b75d15 to your computer and use it in GitHub Desktop.
Fix problems of fonts in PDF made by macOS.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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