mirror of
https://github.com/ivuorinen/imdbref.git
synced 2026-01-26 03:14:09 +00:00
10 lines
214 B
Bash
Executable File
10 lines
214 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
FILENAME=$(date +%Y-%m-%d);
|
|
# process and create .dot
|
|
python imdbref.py > $FILENAME.dot
|
|
# remove old
|
|
rm $FILENAME.png
|
|
# do the image from the .dot
|
|
twopi $FILENAME.dot -Tpng -v -o $FILENAME.png
|