DeAr ,
I am a newbie runnig shell scripting in Linux . I have the following questions like ,
1) If i wrte a script like
#!/bin/bash
#make_page - A Script to produce an HTML file
title="System Information for"
cat <<- _E OF_
<HTML>
<HEAD>
<TITLE>
$title $shipon
</TITLE>
</HEAD>
<BODY>
<H1>$title $shipon</H1>
</BODY>
</HTML>
_EOF_
How can i run it ? or using which cammand i show my system information .
2 ) if i write the following script
function system_info
{
echo "<h2>System release info</h2>"
echo "<p>Function not yet implemented</p>"
}
How i can run it ?
Plz help me ........