webif/var/mongoose/lib/cat

10 lines
141 B
Plaintext
Raw Normal View History

if {[expr ! [exists -proc cat ]]} {
proc cat {file} {
if {[catch {set fp [open $file r]]} { return }
puts [read $fp]
close $fp
}
}