blob: 7ab7a40434ee3291dae02ad3bf3d8b0e66c7c180 (
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/2024/$(date +%F)
# clean up
rm *
|