File tree 5 files changed +37
-0
lines changed
5 files changed +37
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+
4
+
5
+ if [[ -f $1 ]]; then
6
+ /Applications/draw.io.app/Contents/MacOS/draw.io --export --output $1 .jpg $1
7
+ fi
8
+
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+
4
+
5
+ if [[ -f $1 ]]; then
6
+ /Applications/draw.io.app/Contents/MacOS/draw.io --export --output $1 .pdf $1
7
+ fi
8
+
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+
4
+
5
+ if [[ -f $1 ]]; then
6
+ /Applications/draw.io.app/Contents/MacOS/draw.io --export --output $1 .png $1
7
+ fi
8
+
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+
4
+
5
+ if [[ -f $1 ]]; then
6
+ /Applications/draw.io.app/Contents/MacOS/draw.io --export --output $1 .$2 $1
7
+ fi
8
+
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ R=1
4
+ PAT=" front-%d.jpg"
5
+ ffmpeg -r $R -i $PAT -y out.mp4
You can’t perform that action at this time.
0 commit comments