#!/bin/bash
# JVL SETUP SCRIPT
# Steve Dugaro (cecm)
# Konrad Polthier
# 
# pass in a list of browser executable names
 args="$*"

# PATH TOKENIZATION
 ifs="$IFS"      # Save normal IFS
 IFS=:
 set xyz $PATH   # Parse PATH with :
 shift
 IFS="$ifs"
# echo first PATH directory is $1

# BROWSER DETERMINATION
 for i in $args 
 do 
  for j in $*
  do
   if test -f $j/$i; then
    echo $i   
   fi  
  done
 done

