4 lines
94 B
Bash
Executable file
4 lines
94 B
Bash
Executable file
#!/bin/bash
|
|
|
|
find -name "*.svg" -exec sh -c 'inkscape $1 --export-png=${1%.svg}.png' _ {} \;
|
|
|