#!/bin/bash

scripts/quote2.sh | while read nome sobrenome ; do
	if [ "${nome}" = "\"Baltazar" ] ; then
		echo "${nome}" "${sobrenome}"
	fi
done

