dotfiles/zsh/custom/plugins/asy2png/asy2png.plugin.zsh

6 lines
149 B
Bash
Raw Normal View History

2018-06-27 15:06:19 +00:00
function asy2png {
asy "$1"
filename=$(basename -s .asy "$1")
rsvg-convert "$filename.svg" -o $(echo "$filename.svg" | sed -e 's/svg$/png/')
}