BEGIN { FS = " "
#NR == 1 {
printf("Content-type: text/html\n\n")
printf("
Icon Library
%s%s
\n", webdir, dir)
}
status=="dir" {
if (substr($0, 1, 1) == "d" && $9 != "." && $9 != "..") {
printf("
%s\n", $9, diricon, 34, 34, $9)
}
}
status=="file" {
print $9
if ($5 + 0 < maxsize + 0) {
printf("
\n", webdir, dir, $9, webdir, dir, $9)
}
}
END {
print "
Click on any icon or directory you want to download."
printf("sta: %s\n", status)
}