Ultima attività a month ago

These are my number one bash scripts. I can't live without them.

Revisione 4e7ef17

.bash_aliases Raw
1function reduceimage {
2 convert -resize 2000x2000 -quality 70 "$1" "$1".r && exiftool -all= "$1".r && exiftool -delete_original "$1".r
3}
4
5alias reduceimage="reduceimage"