if test $# = 1
then
    for process in "$(ps -fU chalency | grep $1 | cut -c 11-16)"
    do
        kill -INT $process
    done
else
    echo "Usage : arret nomCommande"
fi