Subject: a little contrib thing, to save other people the work:
From: Chris Siebenmann <cks@hawkwind.utcs.toronto.edu>

[if I was a real hacker and knew my TCL/TK, I'd have made it handle
 multiple arguments by getting tkman to spawn new views and display
 the multiple arguments in those new views.]

#!/local/bin/X11/wish -f
# command line client interface to tkman. handles directory-relative
# arguments properly.
wm withdraw .; update
if {$argc != 1} {
	puts stderr "usage: tkmanclient tkman-thing"; exit  1
}
set mpage [lindex $argv 0]
switch -glob -- $mpage {
	"./*" {set mpage [format "%s%s" [pwd] [string range $mpage 1 end]]}
	"../*" {set mpage [format "%s/%s" [pwd] $mpage]}
}
send tkman wm deiconify .man; send tkman raise .man
send tkman manShowMan $mpage
exit 0

