testfZ $1

sortie=$1
sort  -o tri.out  -n  +0 +1  $1
echo ' '
head -18 tri.out  
echo ' '
wc -l tri.out
echo ' '
echo -n "Copie du fichier trie sur $sortie (o/n)?  " 
read rep
case $rep in
o) mv tri.out $sortie && (echo ' ' ; echo 'fichier copie')
   echo ' ' ;;
n) break ;;
esac 
