Useful bash commands

From RpWiki
Revision as of 20:30, 18 April 2010 by Rp (Talk | contribs)

Jump to: navigation, search

Commands

Change permissions on files and folders with find

 find . -type f -exec chmod 664 {} \;
 find . -type d -exec chmod 755 {} \;

Folder resize via imagemagick

 for file in *.jpg; do convert $file -resize 1600x1600 /exportfoler/$file; done;