#!/bin/bash # # file to add the "architecture bubbles" # to the default and restore images # cd ../files for i in i686 i486 amd64;do for n in default-ocswp default-restore-ocswp;do echo -n "Creating "$n"-"$i".png... " composite "$i".png "$n".png -compose over "$n"-"$i".png echo 'done' done done