#!/bin/bash

for UE in notes/* ;
do
    NOM_UE=$(echo $UE | sed -E "s/.*\/(.*)/\1/g")
    ./page_ue $NOM_UE
done