summaryrefslogtreecommitdiff
path: root/moulixd
blob: 42979f3069aaaa7243841825fd8461897f91b56e (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

if [ -n "$@" ];
then
    echo $1 >> temp1
    diff $1 $2
    rm temp1
else
    echo "J'ai besoin de 2 arguments pour comparer les résultats."
fi