swh:1:snp:af87cd67498ef4fe47c76ed3e7caffe5b61facaf
Raw File
Tip revision: 2c5707e9b4f78ee1b8691c35855575cd5b00925a authored by Unknown Author on 31 March 2006, 13:09:23 UTC
This commit was manufactured by cvs2svn to create tag 'v5-10-00c'.
Tip revision: 2c5707e
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