JpFAQ-Aug95 ------------------------ This file includes translations of following FAQs into Japanese. * comp.lang.tcl FAQs version 6.010 * comp.lang.tcl Tcl Bibliography, Part 1/1 Version1.4 * FAQ: comp.lang.tcl Tcl Language Usage Questions And Answers * FAQ: comp.lang.tcl Tk Toolkit Usage Questions And Answers version 1.5 Many many thanks to the authors of the original faqs! All of files contain EUC KANJI code. Some FAQs are formated in HTML. If you don't have Japanese environments, I can recommend to install Japanized Tcl/Tk. Then use jbrowser (or following simple script) on Japanized wish. jbrowser is included in jstool. for more detail, read Larry's faq part04. Enjoy! ----------------- Takeshi Taguchi taguchi@aic.co.jp BEGIN>---88--- #!/bin/sh # A Very Simple Text Viewer. \ exec wish -f $0 ${1+"$@"} if {$argc != 1} { puts stdout "Usage: $argv0 filename" exit } scrollbar .y -orient vertical -command {.t yview} text .t -yscrollcommand {.y set} -relief raised -borderwidth 2 pack .t .y -side left -fill y if {[catch "open [lindex $argv 0]" fp]} { puts stderr $fp exit } while {[gets $fp line] >= 0} { .t insert end "$line\n" } close $fp END>---88---