#!/bin/csh
if (`ifconfig eth0 | wc | awk '{ print $1}'` == "7" ) then
  echo -n "yes"
else
  echo -n "no"
endif
