#!/bin/sh # if [ $# = 0 ] then echo "Usage: compile
.c [ .c ... ]" exit 0 fi # main=`basename $1 .c` # shift # gcc -ansi -o $main $main.c "$@" #