#!/bin/tcsh

set current_os = `uname`
set dataset    = data/stardata/HIP/hip.7.star
set script     = scripts/fixed.scp

if ($current_os == "IRIX" || $current_os == "IRIX64") then
  set ext = "sgi"
else if ($current_os == "Linux") then
  set ext = "linux"
else if ($current_os == "SunOS") then
  set ext = "sun"
else
  set ext = "mac"
endif

echo "bin/starview.$ext $script $dataset"
bin/starview.$ext $script $dataset
