How To … Rotating Header Image

Posts in ‘2010’

How to add picture watermark in batch

mogrify -font /usr/share/fonts/truetype/msttcorefonts/Arial_Black.ttf pointsize 22 -verbose -draw “gravity south fill black text 0,33 ‘Focused On The Unfocused’ fill white text 1,32 ‘Focused On The Unfocused’ ” *.jpg source

linux – find files inside zips

How to locate a file inside a zip file or inside a jar file: find . -name “*jar” -exec unzip -l {} \; | grep persistence.xml