swh:1:snp:af87cd67498ef4fe47c76ed3e7caffe5b61facaf
Raw File
Tip revision: 3199da80e8277989dcffba9d461a65a1ffa14755 authored by Unknown Author on 21 April 2003, 15:16:37 UTC
This commit was manufactured by cvs2svn to create tag 'v3-05-04'.
Tip revision: 3199da8
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