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