Você pode experimentar este código.
for file in */*; do # Loop trough any file in any folder
if [ -f "$file" ]; then # If the current element is a file
gd2p.pl -i "$file" # Run the program
fi # End if
done # End loop