Convertir en commande majuscule awk

echo example | awk -F 'd' '{ print toupper($1)}'
EXAMPLE		#Example first upppercased outputed
Armandres