6 lines
148 B
Bash
Executable file
6 lines
148 B
Bash
Executable file
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p imagemagick
|
|
|
|
DIR=$(dirname -- "$(readlink -f -- "$0")")
|
|
|
|
magick "$DIR/source.svg" "$DIR/export.png"
|