20 lines
295 B
Bash
Executable File
20 lines
295 B
Bash
Executable File
#!/bin/bash
|
|
|
|
TFPATH=/scripts/root/observium/sfp_view
|
|
|
|
echo "<html>
|
|
<head>
|
|
<!-- $TFPATH/script.sh -->
|
|
</head>
|
|
<body>
|
|
" > $TFPATH/sfp_overview.html
|
|
|
|
mysql -H -uroot -plunakoshix -Dobservium < $TFPATH/script.sql >> $TFPATH/sfp_overview.html
|
|
|
|
echo "
|
|
</body>
|
|
</html>
|
|
" >> $TFPATH/sfp_overview.html
|
|
|
|
|