Formating output in html


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Formating output in html
# 1  
Old 05-06-2013
Formating output in html

Hi Guys,

I was searching and landed up something here only.

This is the code and I want the formatted html in email but that is not working, anybody knows the reason why?

Code:
#!/bin/sh

set -x

DATE=`date -u`

# Print beginning of webpage
function html_header
{
    cat <<END
        <html>
         <head><title>${1}</title></head>
         <body>
         <h3>${1}</h3>
         <!-- Table of Contents links -->
         <p>
         <a href='#rpmversion'>RPM Versions</a>
         <a href='#processes'>Processes</a>
         </p>
         END
}

function html_footer
{

cat <<abc
</body>
</html>
abc

}

function html_title
{
echo "<h3><a name='#${2}'>$1</a></h3>"
}

function rpm_versions
{
html_title "RPM Versions" "rpmversion"
echo "<pre>"
rpm -qa|sort
echo "</pre>"
}

function get_allprocs
{
html_title "All Running Processes" "processes"
ps -fu ${USER}
}

html_header "Report Summary for ${DATE}" >> temp.html 
rpm_versions >> teml.html
get_allprocs >> temp.html
html_footer >> temp.html

cat temp.html|mailx -s "Test email" test@testme.com

When I run the code I get an error.

++ date -u
+ DATE='Mon May 6 04:58:38 UTC 2013'
./formatted_Script.sh: line 58: syntax error: unexpected end of file

What is the issue here?

---------- Post updated at 03:19 PM ---------- Previous update was at 02:59 PM ----------

Issue identified.
the END should be aligned to the left hand side, god knows why !

Anyhow I am not getting a well formatted output.
# 2  
Old 05-06-2013
I am getting this output.

Code:
Report Summary for Thu May 9 11:28:19 UTC 2013
RPM Versions Processes 

RPM Versions
This is a test

All Running Processes
testing processess

What are you missing?
# 3  
Old 05-06-2013

<html>
<head><title>Report Summary for Mon May 6 06:26:08 UTC 2013</title></head>
<body>
<h3>Report Summary for Mon May 6 06:26:08 UTC 2013</h3>
<!-- Table of Contents links -->
<p>
<a href='#rpmversion'>RPM Versions</a>
<a href='#processes'>Processes</a>
</p>
<h3><a name='#rpmversion'>RPM Versions</a></h3> <pre>
acl-2.2.23-5.4.el4
acpid-1.0.3-2
alchemist-1.0.34-1
at-3.1.8-82.el4
atk-1.8.0-2
atk-1.8.0-2
at-spi-1.6.0-3



Why such garbage output?

---------- Post updated at 04:50 PM ---------- Previous update was at 04:36 PM ----------

I added these three magical lines but still no pretty output.

echo "MIME-Version: 1.0"
echo "Content-Type: text/html"
echo "Content-Disposition: inline"
# 4  
Old 05-06-2013
they are the output of rpm -qa|sort & ps -fu ${USER}
you may have to format it there! complaining the shell script or the mail types won't do any good. Try reading line by line and print them in a fixed length output!
# 5  
Old 05-07-2013
Sir,

I don't know that is why I am requesting help here !

Everything in life is a learning experience Smilie
# 6  
Old 07-04-2013
This does the job ;)

Hi bluemind2005,
This does the job:
Code:
#!/bin/bash

set -x

DATE=`date -u`

# Print beginning of webpage
html_header ()
{
	cat <<END
		<html>
			<head><title>${1}</title>
			
			</head>
				<body>
					<h3>${1}</h3>
						<!-- Table of Contents links -->
							<p>
								<a href='#rpmversion'>RPM Versions</a>
								<a href='#processes'>Processes</a>
								</p>
END
}

html_footer () {
	cat <<abc
	</body>
	</html>
abc
}

html_title () {
	echo "<h3><a name='#${2}'>$1</a></h3>"
}


get_allprocs () {
	html_title "All Running Processes" "processes"
	cat <<procs
	<pre>$(ps -fu $USER)</pre>
procs
}

html_header "Report Summary for ${DATE}" > temp.html
get_allprocs >> temp.html
html_footer >> temp.html

mail -a 'MIME-Version: 1.0' -a 'Content-Type: text/html; charset=utf-8' -a 'X-AUTOR: Your name here' -s "Email subject here" your_email@here.com < temp.html

Image
Please note that I did not include the rpm versions functions as I am working on a Debian machine. But taking a look at what I did with the get_allprocs function you should be able to add it without issues.
Let me know if you need anything else. If this solves your issue, kindly mark this thread as solved.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

awk HTML Conditional Formating

I am receiving the below output in text format. The output is converted to HTML table using the code mentioned below output in text LogDate DayOfWeek/Hours _0_ _1_ _2_ _3_ _4_ _5_ _6_ _7_ _8_ _9_ _10_ _11_ _12_ _13_ _14_ _15_ _16_ ... (3 Replies)
Discussion started by: Dumpi16
3 Replies

2. Shell Programming and Scripting

HTML mail formating in UNIX

Hi i need to send mail from my Unix server i used the below code. From: TTS.OO.Monitoring.Operations Subject: Error X-Mailer: htmlmail 1.0 Mime-Version: 1.0 Content-Type: text/html; charset=US-ASCII <HTML><head><style type='text/css'> table.altrowstable { font-family:... (6 Replies)
Discussion started by: mohanalakshmi
6 Replies

3. UNIX for Advanced & Expert Users

Formating and Parsing Autosys output

if you want to parse the output from an autosys you can use the below autorep -j Prefix_% | awk '{ if ($6 ~ /^/) printf "%-20s \t\t %-20s\n",$1,$5 ; else if ($6 ~ /^/) printf "%-20s \t\t %-20s\n",$1,$6; else printf "%-20s \t\t %-20s\n",$1,$4 }' | awk '{ if ($2... (1 Reply)
Discussion started by: phpsnook
1 Replies

4. Shell Programming and Scripting

Formating output

Hello Team i have a file with following data (as columns). I need implement a syntax like below for altering table ALTER TABLE1 TABLENAME ADD COLUMN COL1 CHAR(5) NOT NULL WITH DEFAULT ADD COLUMN COL2 CHAR(5) .. .. ADD COLUMN COLn CHAR(5) NOT NULL... (1 Reply)
Discussion started by: rocking77
1 Replies

5. Shell Programming and Scripting

formating output

Hi all, I want to start a new topic on this matter I have this script, #!perl use strict; use warnings; use Data::Dumper; open my $log, '>', 'log-external.txt' or die "Could not open log: $!"; print $log "Subnet,Static,DHCP,Unused\n"; open my $dump, '>', 'dump.log' or die... (2 Replies)
Discussion started by: richsark
2 Replies

6. Shell Programming and Scripting

Problem In Formating Table as Output

Hi! I'm working a program that collects 4 various inputs and format my output into tabular form.Problem is my table margins move with different character lengths. Is there a way to fix my table margins even though the variables inside the table varies in length? thank you very much...:( (1 Reply)
Discussion started by: Lo11001
1 Replies

7. Shell Programming and Scripting

Output formating

Dear All I am stuck in one problem. Kindly help me. I am taking below mention file as input file and want some op file as mention below. Kindly send me all possible suggestion and query. Thnaks Jaydeep bELOW IS THE INPUT FILE: *** Connected to BSCANGR ***... (1 Reply)
Discussion started by: jaydeep_sadaria
1 Replies

8. Shell Programming and Scripting

formating array file output using perl

Hello, I am trying to output the values in an array to a file. The output needs to be formated such that each array value is left jusified in a field 8 character spaces long. Also, no more than 6 fields on a line. For example: @array= 1..14; Needs to be output to the file like so: 1 ... (4 Replies)
Discussion started by: seismic_willy
4 Replies

9. Shell Programming and Scripting

formating output

I have a file proc.txt which contains the below one. Content-type: text/html <H2>No query</H2> infodba-marabou:/tmp => export QUERY_STRING="IMAN_server_report=full" infodba-marabou:/tmp => $IMAN_ROOT/web/htdocs/cgi-bin/iman > /tmp/proc.txt infodba-marabou:/tmp => cat proc.txt... (20 Replies)
Discussion started by: Krrishv
20 Replies

10. Shell Programming and Scripting

Formating cal output

Hi Gurus, In my Cal output i want to cut the date of 2nd saturday how tyo achive this. for eg in the below output i need that second saturday 13 to be cut. crypto $ cal January 2007 S M Tu W Th F S 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26... (2 Replies)
Discussion started by: Krrishv
2 Replies
Login or Register to Ask a Question