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