webif/var/mongoose/cgi-bin/streamsize.jim

13 lines
192 B
Plaintext
Raw Normal View History

#!/mod/bin/jimsh
set stream "/mnt/hd3/Streamer_down_file"
puts "Content-type: text/plain\n"
if {[file exists $stream]} {
puts -nonewline [file size $stream]
} else {
puts -nonewline 0
}