Skip to content

Instantly share code, notes, and snippets.

@oishimilk
Created June 14, 2021 19:04
Show Gist options
  • Save oishimilk/95b489b870a5f8c9ff6a23ecdc581beb to your computer and use it in GitHub Desktop.
Save oishimilk/95b489b870a5f8c9ff6a23ecdc581beb to your computer and use it in GitHub Desktop.
PNG を TeX の EPS2 に変えるやつ
#!/bin/bash
for f in *.png; do convert ${f} eps2:${f}.eps; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment