Skip to content

Instantly share code, notes, and snippets.

@negokaz
Created November 30, 2015 09:38
Show Gist options
  • Save negokaz/e406db266a69d7a36980 to your computer and use it in GitHub Desktop.
Save negokaz/e406db266a69d7a36980 to your computer and use it in GitHub Desktop.
カレントディレクトリの全てのsvgファイルからpdfファイルを生成します
#!/bin/sh
find "`pwd`" -name '*.svg' -exec inkscape --file="{}" --export-pdf="{}.pdf" \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment