diff options
Diffstat (limited to 'client/shared/lib/httpd/cache.sh')
-rwxr-xr-x | client/shared/lib/httpd/cache.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/client/shared/lib/httpd/cache.sh b/client/shared/lib/httpd/cache.sh new file mode 100755 index 00000000..a2e40093 --- /dev/null +++ b/client/shared/lib/httpd/cache.sh @@ -0,0 +1,22 @@ +#!/bin/bash +echo "Content-type: text/html" +echo "" +echo "<html><head> <meta http-equiv='Refresh' content='5,URL=./cache.sh'> <title>Listado de la Cache" +echo "</title>" +echo "<style type='text/css'>" +echo "<!--" +echo "TEXTAREA {" +echo "background-color: navy;" +echo "border: black 2px solid;" +echo "color: white;" +echo "font-family: arial, verdana, ms sans serif;" +echo "font-size: 8pt;" +echo "font-weight: normal" +echo "} " +echo "-->" +echo "</style>" +echo "</head><body>" +echo "<TEXTAREA NAME='contenido' ROWS='30' COLS='150' >" +echo "$(ls -lh /opt/opengnsys/cache/opt/opengnsys/images )" +echo "</TEXTAREA>" +echo "</body></html>"
\ No newline at end of file |