lftp command for mirroring FTP
lftp -e ‘mirror -R /home/backups/ /backups/;bye’ -u user,password ftp.juzhax.com
lftp -e ‘mirror -R /home/backups/ /backups/;bye’ -u user,password ftp.juzhax.com
#!/bin/sh # script for optimizing images in a directory (recursive) # pngcrush & jpegtran settings from: # http://developer.yahoo.com/performance/rules.html#opt_images # pngcrush for png in `find $1 -iname “*.png”`; do echo “crushing $png …” pngcrush -rem alla -reduce -brute “$png” temp.png # preserve original on error if [ $? = 0 ]; then mv -f temp.png $png …
Script for optimizing images in a directory (recursive) in Linux Read More »
The first post on Juzhax.com My previous personal blog, Justin.my isn’t a personal blog anymore. It is most like a game walkthrough, solution sites more than a personal blog. And there is no place to let me share some technology related post there. What am I going to share in here I would like to …