aboutsummaryrefslogtreecommitdiffhomepage
path: root/content/2023-09-01-cas-llsc-aba/gen-svg.sh
diff options
context:
space:
mode:
authorJohannes Stoelp <johannes.stoelp@gmail.com>2024-02-26 21:58:24 +0100
committerJohannes Stoelp <johannes.stoelp@gmail.com>2024-02-26 21:58:24 +0100
commitbc6907e58ba86da8c30a29c98b998832c4b260d3 (patch)
tree2251550212369ff4861e0629fc6204ffbe763254 /content/2023-09-01-cas-llsc-aba/gen-svg.sh
parent87c34df2616c8fa4a86fb7f1caecf450d27ec230 (diff)
downloadblog-bc6907e58ba86da8c30a29c98b998832c4b260d3.tar.gz
blog-bc6907e58ba86da8c30a29c98b998832c4b260d3.zip
svg: add script to export drawio svg after feature was added to specify theme on cli
Diffstat (limited to 'content/2023-09-01-cas-llsc-aba/gen-svg.sh')
-rw-r--r--content/2023-09-01-cas-llsc-aba/gen-svg.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/content/2023-09-01-cas-llsc-aba/gen-svg.sh b/content/2023-09-01-cas-llsc-aba/gen-svg.sh
new file mode 100644
index 0000000..f24eb91
--- /dev/null
+++ b/content/2023-09-01-cas-llsc-aba/gen-svg.sh
@@ -0,0 +1,5 @@
+#!/bin/bash
+
+for name in list-abc list-ac list-b; do
+ drawio -x -f svg -t --svg-theme dark -o $name.svg $name.drawio
+done