forked from hummypkg/webif
c208e186c3
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@1202 2a923420-c742-0410-a762-8d5b09965624
13 lines
192 B
Plaintext
Executable File
13 lines
192 B
Plaintext
Executable File
#!/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
|
|
}
|
|
|