#!/bin/bash

for UE in notes/* ;
do
    RET=$(./nom_etu_backend $UE $1)
    if [ -n "$RET" ]; then
        echo $RET
        exit 0
    fi
done