#!/bin/bash find /directory/uploads/ | while read i do wid=`identify -ping -format '%W' $i 2>/dev/null` if [ $wid -gt 1000 ]; then echo $i fi done