blob: 3f16da61e4205a680798cbf1c5e35e95463335ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/env sh
# first let's remove those pesky webp
cd ~/funnies
magick mogrify -format JPEG *.webp
rm *webp
# and beam them up scotty
rsync -rtvzP ~/funnies/ mms@michal.sapka.me:/var/www/htdocs/funnies/2023/$(date +%F)
# clean up
rm *
|