#!/bin/csh -f
#
#  This is a script to run vmantra.  There appears to be a problem in alfred
#  when redirecting input from a file.  This shell script merely cat's the
#  first argument and runs the remaining arguments.
#

if ( $#argv < 2 ) then
    echo $0 Invalid usage
    exit 1
endif

set file = $1
shift
(echo ray_alfred; cat $file) | $*
