source: client/shared/lib/httpd/LogSession.sh @ f8b1b41

918-git-images-111dconfigfileconfigure-oglivegit-imageslgromero-new-oglivemainmaint-cronmount-efivarfsmultivmmultivm-ogboot-installerogClonningEngineogboot-installer-jenkinsoglive-ipv6test-python-scriptsticket-301ticket-50ticket-50-oldticket-577ticket-585ticket-611ticket-612ticket-693ticket-700ubu24tplunification2use-local-agent-oglivevarios-instalacionwebconsole3
Last change on this file since f8b1b41 was 3f73876, checked in by adv <adv@…>, 14 years ago

version 1.0.2 httpdlog #421 #422

git-svn-id: https://opengnsys.es/svn/branches/version1.0@2353 a21b9725-9963-47de-94b9-378ad31fedc9

  • Property mode set to 100644
File size: 618 bytes
Line 
1#!/bin/bash
2echo "Content-type: text/html"
3echo ""
4echo "<html><head> <meta http-equiv='Refresh' content='5,URL=./LogSession.sh'> <title>Bash as CGI"
5echo "</title>"
6
7echo "<style type='text/css'>"
8echo "<!--"
9echo "TEXTAREA {"
10echo "background-color: navy;"
11echo "border: black 2px solid;"
12echo "color: white;"
13echo "font-family: arial, verdana, ms sans serif;"
14echo "font-size: 8pt;"
15echo "font-weight: normal"
16echo "} "
17echo "-->"
18echo "</style>"
19
20
21
22echo "</head><body>"
23
24echo "<TEXTAREA NAME='contenido' ROWS='115' COLS='175'  >"
25echo "$(cat /tmp/session.log | uniq )"
26echo "</TEXTAREA>"
27
28
29
30echo "</body></html>"
31
Note: See TracBrowser for help on using the repository browser.