webif/var/mongoose/lib/cat
hummypkg 993958d346 update icons
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@549 2a923420-c742-0410-a762-8d5b09965624
2011-12-09 10:11:41 +00:00

10 lines
141 B
Plaintext

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