Bash - Creare una galleria di mini immagini


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. #!/bin/sh
  2.  
  3. for i in `ls *.jpg`;
  4. do
  5. convert -geometry 320x240 $i galleria-$i
  6. done

Report this snippet


Comments


You need to login to view comments.