#!/bin/sh
if uname -a | grep [Ll]inux > /dev/null ; then
  dot.linux $@
else  
  if uname -a | grep SunOS > /dev/null ; then
    dot.solaris  $@
  else
    echo Sorry, no matching architecture found.
  fi  
fi
