#!/bin/bash
if [ -x /etc/bin/uname.pl ]
 then
  k=`/etc/bin/uname.pl`;
  echo "\$k=$k";
 else
 echo "Err: Can't execute /etc/bin/uname.pl . "
fi
if [ $k = 38 ]
  then
   echo "kernel is 2.0.38";
   echo "\$k=$k";
  elif [ $k = 37 ] 
   then
    echo "kernel is 2.0.37"
  else 
    echo "kernel is not know for $0";
fi
