Created
December 24, 2013 08:38
-
-
Save spidersea/8110444 to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/bash | |
DATE1=`date +%Y/%m/%d` | |
DATE2=`date +%Y/%m/` | |
PIC_dir="/home/wwwroot/web/" | |
if [ -d ${PIC_dir} ] | |
then | |
cd ${PIC_dir} && find . -name "*.jpg" -exec convert -resize 110x150 {} {} \; | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment