4 lines
128 B
Bash
Executable File
4 lines
128 B
Bash
Executable File
#!/bin/bash
|
|
|
|
find . -name "*.mermaid" -type f -exec sh -c 'mmdc -i "$1" -o "${1%.mermaid}.svg" -b transparent -t dark' sh {} \;
|