FS=`nof $1`

echo ' '
case $LNG in
  fr) echo "Champs du fichier $FS (type $1)" ;;
 eng) echo "Fields of the file $FS (type $1)" ;;
esac
echo ' '
echo "Param  pos leng col  designation"
echo ' '

case $# in
 1) grep " $1" $DIC/pos.dic | egrep -v net | cut -c1-46 ;;
 2) grep " $1" $DIC/pos.dic | awk ' $1 == dic {print $0} ' dic=$2 |\
    egrep -v net | cut -c1-46 ;;
esac
echo ' '
