Created
September 14, 2019 15:15
-
-
Save paperlefthand/8264b34308e196f6bde51a25bcc64ea4 to your computer and use it in GitHub Desktop.
plantumlで, umlディレクトリ配下の.umlファイルを全てdiagramに変換する.
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 | |
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