#!/bin/csh -f ###################################################################### set me=$0:t # the name of this program goto Start ###################################################################### Usage: echo "Usage: $me version time name file1 [file2 ...]" echo "Applies bulk version number, time stamp, and file name to one or more html files" echo echo " version a quoted string to insert as the bulk version number" echo " time a quoted string to insert as the bulk time stamp" echo " name a quoted string to insert as the bulk file name" echo exit ###################################################################### Start: if ($# < 4) then goto Usage endif set theVersion="$1" set theTime="$2" set theName="$3" shift; shift;shift; stamp BULKVERSION "$theVersion" $* stamp BULKDATE "$theTime" $* stamp BULKNAME "$theName" $*