#!/bin/bash
#FAUGERON Tylan & CHALENCON Yoan TD1 TPB

for lettre in {A..Z}
do
    echo "$lettre : $(grep ^$lettre dico.txt | wc -l)"
done