#!/usr/local/bin/tclsh8.4 # The exec tclsh'' below will simply be ignored. # \ if [ -e /usr/bin/tclsh ]; then exec /usr/bin/tclsh "$0" ${1+"$@"} ; fi # \ if [ -e /usr/local/bin/tclsh8.4 ]; then exec /usr/local/bin/tclsh8.4 "$0" ${1+"$@"} ; fi # \ if [ -e /usr/local/bin/tclsh8.3 ]; then exec /usr/local/bin/tclsh8.3 "$0" ${1+"$@"} ; fi # \ if [ -e /usr/bin/tclsh8.4 ]; then exec /usr/bin/tclsh8.4 "$0" ${1+"$@"} ; fi # \ exec tclsh "$0" ${1+"$@"} set path [file join [file dirname [file dirname [info script]]] images pwrdLogo200.gif] set in [open $path] puts "Content-Type: image/gif" puts "Content-Length: [file size $path]" puts "" fconfigure $in -translation binary fconfigure stdout -translation binary # Delay to simulate slow CGI after 1000 fcopy $in stdout close $in exit 0