#!/bin/bash

for file in `find . -type f | grep "solution.txt"`
do
    echo -e "\r\n\r\n(solution par Hugo Labrande)" >>$file
done

