This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Must install ImageMagick first | |
http://www.imagemagick.org/script/index.php | |
//This compresses a jpg with no visible loss of quality. Add in your own file names for target.jpg and result.jpg | |
convert -strip -interlace Plane -sampling-factor 4:2:0 -quality 85% target.jpg result.jpg | |
// This does the same as above but to an entire folder (will overwrite original files): | |
mogrify -strip -interlace Plane -sampling-factor 4:2:0 -quality 85% *.jpg | |
//This does the same thing but to all subfolders as well (Be careful with this one it will overwrite all original files) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
spaces_backup() { | |
# Defining google settings | |
#source $VESTA/conf/space.backup.conf | |
export END_POINT=<ENTER THE ENDPOINT> | |
export AWS_ACCESS_KEY_ID=<ENTER THE AWS ACCESS KEY> | |
export AWS_SECRET_ACCESS_KEY=<ENTER THE AWS SECRET KEY> | |
BUCKET=<YOUR BUCKET NAME HERE> | |
BPATH=<DESTINATION PATH> |