Skip to content

Instantly share code, notes, and snippets.

@paperlefthand
Created September 14, 2019 15:15
Show Gist options
  • Save paperlefthand/8264b34308e196f6bde51a25bcc64ea4 to your computer and use it in GitHub Desktop.
Save paperlefthand/8264b34308e196f6bde51a25bcc64ea4 to your computer and use it in GitHub Desktop.
plantumlで, umlディレクトリ配下の.umlファイルを全てdiagramに変換する.
#!/bin/bash
PLANTUML_PATH=$PWD/uml/plantuml.jar
for d in `find $PWD/uml -name '*.uml'`
do
java -jar $PLANTUML_PATH $d -charset UTF-8
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment