forked from hummypkg/webif
d7284ff3ef
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@1016 2a923420-c742-0410-a762-8d5b09965624
19 lines
257 B
Plaintext
Executable File
19 lines
257 B
Plaintext
Executable File
#!/mod/bin/jimsh
|
|
|
|
package require cgi
|
|
source /mod/webif/lib/setup
|
|
|
|
cgi_input
|
|
#cgi_dump
|
|
|
|
set file [cgi_get file "/tmp/hosts"]
|
|
if {$file eq "-"} { exit }
|
|
|
|
puts "Content-Type: text/plain\n"
|
|
|
|
if {[file exists $file]} {
|
|
puts ">>> File already exists."
|
|
exit
|
|
}
|
|
|