swh:1:snp:af87cd67498ef4fe47c76ed3e7caffe5b61facaf
Raw File
Tip revision: 04a8a456cd8942cc3b074f142d355dee0319f213 authored by Unknown Author on 06 May 2002, 16:15:09 UTC
This commit was manufactured by cvs2svn to create tag 'v3-03-04'.
Tip revision: 04a8a45
cc.sh
#! /bin/sh

# Simple interface to CL, tansforming -o <obj> to -Fo<obj>

args=

while [ "$1" != "" ]; do
   case "$1" in
   -o) args="$args -Fo"; shift; args="$args$1" ;;
   *) args="$args $1" ;;
   esac
   shift
done

cl $args

exit $?
back to top