<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title><![CDATA[The UNIX and Linux Forums - Homework & Coursework Questions]]></title>
		<link>http://www.unix.com/</link>
		<description><![CDATA[Students must use and complete the template provided.  If you don't, your post may be deleted! Special homework rules apply here.]]></description>
		<language>en</language>
		<lastBuildDate>Sat, 28 Nov 2009 19:23:51 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>5</ttl>
		<image>
			<url>http://solaris.unix.com/images/misc/rss.jpg</url>
			<title><![CDATA[The UNIX and Linux Forums - Homework & Coursework Questions]]></title>
			<link>http://www.unix.com/</link>
		</image>
		<item>
			<title>songs downloading using curl</title>
			<link>http://www.unix.com/homework-coursework-questions/124719-songs-downloading-using-curl-new-post.html</link>
			<pubDate>Fri, 27 Nov 2009 07:47:26 GMT</pubDate>
			<description><![CDATA[Hi , 
 
I need to download songs from website using shell script.I have written script for that. The code is  
#!/bin/ksh 
curl   "http://www.songs.pk/$1.html" >tmp_page 2>tmp_error 
grep songid tmp_page|cut -d'"' -f2 > song_links 
while read link; do 
echo $link 
curl "$link" >tmp_song 2>tmp_err...]]></description>
			<content:encoded><![CDATA[<div>Hi ,<br />
<br />
I need to download songs from website using shell script.I have written script for that. The code is <br />
#!/bin/ksh<br />
curl   &quot;http://www.songs.pk/$1.html&quot; &gt;tmp_page 2&gt;tmp_error<br />
grep songid tmp_page|cut -d'&quot;' -f2 &gt; song_links<br />
while read link; do<br />
echo $link<br />
curl &quot;$link&quot; &gt;tmp_song 2&gt;tmp_err<br />
done&lt;song_links<br />
<br />
while curling for particul song url, it not returning anything. I couldn't find the solution for this. Could you please  help me.<br />
Thanks in advance.</div>

]]></content:encoded>
			<category domain="http://www.unix.com/homework-coursework-questions/"><![CDATA[Homework & Coursework Questions]]></category>
			<dc:creator>pandu25</dc:creator>
			<guid isPermaLink="true">http://www.unix.com/homework-coursework-questions/124719-songs-downloading-using-curl.html</guid>
		</item>
		<item>
			<title>script -Hamachi - restart - when conection down.</title>
			<link>http://www.unix.com/homework-coursework-questions/124322-script-hamachi-restart-when-conection-down-new-post.html</link>
			<pubDate>Sat, 21 Nov 2009 19:30:39 GMT</pubDate>
			<description>Hi, I need a script when go down my conection.:rolleyes: 
  
Then i have to generate a demond. 
  
  
Same time my conection go down and i do the next line comand in debian system. 
  
Hamachi -c /etc/hamachi logout 
  
and then after a 30 seconds</description>
			<content:encoded><![CDATA[<div>Hi, I need a script when go down my conection.:rolleyes:<br />
 <br />
Then i have to generate a demond.<br />
 <br />
 <br />
Same time my conection go down and i do the next line comand in debian system.<br />
 <br />
Hamachi -c /etc/hamachi logout<br />
 <br />
and then after a 30 seconds<br />
 <br />
Hamachi -c /etc/hamachi login<br />
 <br />
I need a script that every 2 minutes perform a ping to 5.195.142.164.<br />
<br />
If not ping, after 2 attempts to ping , make hamachi automatically logout<br />
<br />
and after 30 seconds start hamachi<br />
 <br />
 <br />
 <br />
Thanks.</div>

]]></content:encoded>
			<category domain="http://www.unix.com/homework-coursework-questions/"><![CDATA[Homework & Coursework Questions]]></category>
			<dc:creator>Brianch2009</dc:creator>
			<guid isPermaLink="true">http://www.unix.com/homework-coursework-questions/124322-script-hamachi-restart-when-conection-down.html</guid>
		</item>
		<item>
			<title>Beginner Scripting Issue</title>
			<link>http://www.unix.com/homework-coursework-questions/124192-beginner-scripting-issue-new-post.html</link>
			<pubDate>Thu, 19 Nov 2009 21:42:05 GMT</pubDate>
			<description><![CDATA[Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 
 
*1. The problem statement, all variables and given/known data:* 
The object is to enter a number, then have another classmate guess the entered number. 
 
 
*2. Relevant...]]></description>
			<content:encoded><![CDATA[<div>Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted!<br />
<br />
<b>1. The problem statement, all variables and given/known data:</b><br />
The object is to enter a number, then have another classmate guess the entered number.<br />
<br />
<br />
<b>2. Relevant commands, code, scripts, algorithms:</b><br />
I am trying to use an if-then-else statement to accomplish my goal<br />
<br />
<br />
<b>3. The attempts at a solution (include all code and scripts):</b><br />
#! /bin/csh<br />
echo &quot;Please select a number to be guessed&quot;<br />
read num1<br />
1:<br />
echo &quot;Please guess a number&quot;<br />
read num2<br />
if (num2 == num1) then<br />
<br />
<br />
        echo &quot;Congratulations!! You have guessed correctly!&quot;<br />
else<br />
        echo &quot;Sorry, but that number is incorrect.&quot;<br />
        goto 1<br />
endif<br />
<br />
<br />
<br />
<b>4. Complete Name of School (University), City (State), Country, Name of Professor, and Course Number (Link to Course):</b><br />
<br />
<br />
Washtenaw Community College, Ann Arbor MI, USA, Doug Cox, CIS 121<br />
<br />
&lt;Hoping I did the template correctly&gt;<br />
<br />
The problem I am encountering is that no matter what number I enter, it always echos &quot;Sorry, but that number is incorrect&quot; even if I enter, say 11, for both num1 and num2. And yes, I am a complete coding noob. xD</div>

]]></content:encoded>
			<category domain="http://www.unix.com/homework-coursework-questions/"><![CDATA[Homework & Coursework Questions]]></category>
			<dc:creator>Jjohn1987</dc:creator>
			<guid isPermaLink="true">http://www.unix.com/homework-coursework-questions/124192-beginner-scripting-issue.html</guid>
		</item>
		<item>
			<title><![CDATA[[Scripting]Find & replace using user input then replacing text after]]></title>
			<link>http://www.unix.com/homework-coursework-questions/123821-scripting-find-replace-using-user-input-then-replacing-text-after-new-post.html</link>
			<pubDate>Mon, 16 Nov 2009 04:24:15 GMT</pubDate>
			<description><![CDATA[Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 
 
*1. The problem statement, all variables and given/known data:* 
(o) Checkout an auto part: should prompt the user for the name of the auto part 
and borrower's name: 
Name:...]]></description>
			<content:encoded><![CDATA[<div>Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted!<br />
<br />
<b>1. The problem statement, all variables and given/known data:</b><br />
(o) Checkout an auto part: should prompt the user for the name of the auto part<br />
and borrower's name:<br />
Name:<br />
Borrower’s name:<br />
After reading the name of the auto part and the borrower’s name, this option<br />
should verify that the auto part exists and that it is checked in. If so, the status<br />
should be changed in the database, otherwise an error message should be<br />
generated. The system date should be used to update the checkout date.<br />
<br />
Basically I have an entry in the file that lists the parts (auto.parts)<br />
i.e<br />
Brakes:Frank:in::<br />
<br />
What needs to happen is someone goes to &quot;check out&quot; the part, they enter the part name then the borrower's name and then the date, then I need to have it edit auto.parts to reflect the person who borrowed the part and the date they borrowed it on.<br />
<br />
Brakes:Frank:in:0:na<br />
<br />
turns into<br />
<br />
Brakes:Frank:out:11/25/09:Mike<br />
<br />
<b>2. Relevant commands, code, scripts, algorithms:</b><br />
Trying to use some variation of <acronym title="Stream Editor">sed</acronym> to do this<br />
<br />
<acronym title="Stream Editor">sed</acronym> -i -e &quot;/$copart/s/&lt;old&gt;/&lt;new&gt;/g&quot; auto.parts<br />
<br />
<b>3. The attempts at a solution (include all code and scripts):</b><br />
<br />
So far I have:<br />
<i>...roughly...</i><br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">echo &quot;Part to be checked out:&quot;<br />
read copart<br />
echo &quot;Enter date:&quot;<br />
read codate<br />
echo &quot;Enter borrower's name:&quot;<br />
read bname</code><hr />
</div>here is where im stuck I'm trying to use <acronym title="Stream Editor">sed</acronym> with something along the lines of:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left"><acronym title="Stream Editor">sed</acronym> -i -e &quot;/$copart/s/in/out/g&quot; -e &quot;/$copart/s/0/$codate/g&quot; -e &quot;/$copart/s/na/$bname/g&quot; auto.parts</code><hr />
</div>I want it to find he line that has $copart in it then change the two fields with 0 to the date and na to borrower's name.<br />
<br />
I know the way im changing my date isn't how it is said in the instructions but im trying to get over this first hurdle before tackling that issue.<br />
<br />
I've been chugging at this on my own scouring the net for HOURS not having any luck finding anything (anything I'm able to comprehend at this point my brain is fried) I'm **hoping** I can get some insight here.. im getting desperate<br />
<br />
<b>4. Complete Name of School (University), City (State), Country, Name of Professor, and Course Number (Link to Course):</b><br />
<br />
Georgia State University | Atlanta, GA USA | Fasheng Qiu <a href="https://www.gosolar.gsu.edu/bprod/wwckctlg.P_DisplayCourses?cat_term_in=200908&amp;subj_code_in=CSC&amp;crse_strt_in=3320&amp;crse_end_in=3320" target="_blank">CSc 3320</a><br />
<br />
Note:  Without school/professor/course information, you will be banned if you post here! You must complete the entire template (not just parts of it).</div>

]]></content:encoded>
			<category domain="http://www.unix.com/homework-coursework-questions/"><![CDATA[Homework & Coursework Questions]]></category>
			<dc:creator>SlapnutsGT</dc:creator>
			<guid isPermaLink="true">http://www.unix.com/homework-coursework-questions/123821-scripting-find-replace-using-user-input-then-replacing-text-after.html</guid>
		</item>
		<item>
			<title>Client/server atm with sockets</title>
			<link>http://www.unix.com/homework-coursework-questions/123755-client-server-atm-sockets-new-post.html</link>
			<pubDate>Sat, 14 Nov 2009 10:56:03 GMT</pubDate>
			<description><![CDATA[Hello everyone!I would appreciate any help you could give me,I have to make a program of an atm machine using client server sockets and semaphores.I know how to construct an ATM in c++ but don't know anything about unix c.The problem is that Don't know what to do and how to link the two programs...]]></description>
			<content:encoded><![CDATA[<div>Hello everyone!I would appreciate any help you could give me,I have to make a program of an atm machine using client server sockets and semaphores.I know how to construct an ATM in c++ but don't know anything about unix c.The problem is that Don't know what to do and how to link the two programs together.<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<b>3.</b> <br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">#include &lt;sys/types.h&gt;<br />
#include &lt;sys/socket.h&gt;<br />
#include &lt;sys/un.h&gt;<br />
#include &lt;stdio.h&gt;<br />
void error(char *);<br />
<br />
void main(int argc, char *argv[])<br />
{<br />
&nbsp;  int sockfd, servlen,n;<br />
&nbsp;  struct sockaddr_un&nbsp; serv_addr;<br />
&nbsp;  char buffer[82];<br />
<br />
&nbsp;  bzero((char *)&amp;serv_addr,sizeof(serv_addr));<br />
&nbsp;  serv_addr.sun_family = AF_UNIX;<br />
&nbsp;  strcpy(serv_addr.sun_path, argv[1]);<br />
&nbsp;  servlen = strlen(serv_addr.sun_path) + <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  sizeof(serv_addr.sun_family);<br />
&nbsp;  if ((sockfd = socket(AF_UNIX, SOCK_STREAM,0)) &lt; 0)<br />
&nbsp; &nbsp; &nbsp;  error(&quot;Creating socket&quot;);<br />
&nbsp;  if (connect(sockfd, (struct sockaddr *) <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  &amp;serv_addr, servlen) &lt; 0)<br />
&nbsp; &nbsp; &nbsp;  error(&quot;Connecting&quot;);<br />
&nbsp;  printf(&quot;Please enter your message: &quot;);<br />
&nbsp;  bzero(buffer,82);<br />
&nbsp;  fgets(buffer,80,stdin);<br />
&nbsp;  write(sockfd,buffer,strlen(buffer));<br />
&nbsp;  n=read(sockfd,buffer,80);<br />
&nbsp;  printf(&quot;The return message was\n&quot;);<br />
&nbsp;  write(1,buffer,n);&nbsp;  <br />
}<br />
<br />
void error(char *msg)<br />
{<br />
&nbsp; &nbsp; perror(msg);<br />
&nbsp; &nbsp; exit(0);<br />
}<br />
<br />
/* a server in the unix domain.&nbsp; The pathname of <br />
&nbsp;  the socket address is passed as an argument */<br />
#include &lt;sys/types.h&gt;<br />
#include &lt;sys/socket.h&gt;<br />
#include &lt;sys/un.h&gt;<br />
#include &lt;stdio.h&gt;<br />
void error(char *);<br />
int main(int argc, char *argv[])<br />
{<br />
&nbsp;  int sockfd, newsockfd, servlen, clilen, n;<br />
&nbsp;  struct sockaddr_un&nbsp; cli_addr, serv_addr;<br />
&nbsp;  char buf[80];<br />
<br />
&nbsp;  if ((sockfd = socket(AF_UNIX,SOCK_STREAM,0)) &lt; 0)<br />
&nbsp; &nbsp; &nbsp;  error(&quot;creating socket&quot;);<br />
&nbsp;  bzero((char *) &amp;serv_addr, sizeof(serv_addr));<br />
&nbsp;  serv_addr.sun_family = AF_UNIX;<br />
&nbsp;  strcpy(serv_addr.sun_path, argv[1]);<br />
&nbsp;  servlen=strlen(serv_addr.sun_path) + <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  sizeof(serv_addr.sun_family);<br />
&nbsp;  if(bind(sockfd,(struct sockaddr *)&amp;serv_addr,servlen)&lt;0)<br />
&nbsp; &nbsp; &nbsp;  error(&quot;binding socket&quot;); <br />
<br />
&nbsp;  listen(sockfd,5);<br />
&nbsp;  clilen = sizeof(cli_addr);<br />
&nbsp;  newsockfd = accept(<br />
&nbsp; &nbsp; &nbsp; &nbsp; sockfd,(struct sockaddr *)&amp;cli_addr,&amp;clilen);<br />
&nbsp;  if (newsockfd &lt; 0) <br />
&nbsp; &nbsp; &nbsp; &nbsp; error(&quot;accepting&quot;);<br />
&nbsp;  n=read(newsockfd,buf,80);<br />
&nbsp;  printf(&quot;A connection has been established\n&quot;);<br />
&nbsp;  write(1,buf,n);<br />
&nbsp;  write(newsockfd,&quot;I got your message\n&quot;,19);<br />
}<br />
<br />
void error(char *msg)<br />
{<br />
&nbsp; &nbsp; perror(msg);<br />
&nbsp; &nbsp; exit(0);<br />
}<br />
:</code><hr />
</div><br />
<br />
<b>4. Computer engineering informatics Department (University), Patras , Greece, Triantafylou, 330(operating systems):</b><br />
<br />
<br />
Note:  Without school/professor/course information, you will be banned if you post here! You must complete the entire template (not just parts of it).</div>

]]></content:encoded>
			<category domain="http://www.unix.com/homework-coursework-questions/"><![CDATA[Homework & Coursework Questions]]></category>
			<dc:creator>tamanas</dc:creator>
			<guid isPermaLink="true">http://www.unix.com/homework-coursework-questions/123755-client-server-atm-sockets.html</guid>
		</item>
		<item>
			<title>Search last field</title>
			<link>http://www.unix.com/homework-coursework-questions/123620-search-last-field-new-post.html</link>
			<pubDate>Thu, 12 Nov 2009 15:33:55 GMT</pubDate>
			<description><![CDATA[Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 
 
*1. The problem statement, all variables and given/known data:* 
Give 'awk' script which printss last field of every line..everyline may have different number of fields. 
 
...]]></description>
			<content:encoded><![CDATA[<div>Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted!<br />
<br />
<b>1. The problem statement, all variables and given/known data:</b><br />
Give 'awk' script which printss last field of every line..everyline may have different number of fields.<br />
<br />
<br />
<b>2. Relevant commands, code, scripts, algorithms:</b><br />
awk<br />
<br />
<br />
<b>3. The attempts at a solution (include all code and scripts):</b><br />
used '\n' as deliminator..but it didnt work..I think using \n..we can do this..but I couldnt<br />
<br />
<br />
<b>4. Complete Name of School (University), City (State), Country, Name of Professor, and Course Number (Link to Course):</b><br />
UB..CS 651<br />
<br />
Note:  Without school/professor/course information, you will be banned if you post here! You must complete the entire template (not just parts of it).</div>

]]></content:encoded>
			<category domain="http://www.unix.com/homework-coursework-questions/"><![CDATA[Homework & Coursework Questions]]></category>
			<dc:creator>aadi_uni</dc:creator>
			<guid isPermaLink="true">http://www.unix.com/homework-coursework-questions/123620-search-last-field.html</guid>
		</item>
		<item>
			<title>Scripting needed</title>
			<link>http://www.unix.com/homework-coursework-questions/123515-scripting-needed-new-post.html</link>
			<pubDate>Wed, 11 Nov 2009 16:38:14 GMT</pubDate>
			<description><![CDATA[Hi, 
 
My task is to check the file test.txt every 15 min from Mon-Fri 9:00AM - 6:00PM. We get this file from our mainframes, every 15 min it will update the same file. 
My task is to compare file timestamp with current system time stamp and check if the file is updated or not. 
If the file doesn't...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
My task is to check the file test.txt every 15 min from Mon-Fri 9:00AM - 6:00PM. We get this file from our mainframes, every 15 min it will update the same file.<br />
My task is to compare file timestamp with current system time stamp and check if the file is updated or not.<br />
If the file doesn't updates in 30 min I need to fail the job &amp; send email &amp; also generate log file with when the job started and when it failed.<br />
<br />
For the log file, I need to always append the start times and end times.<br />
<br />
For example, If the job started at 9:00AM i should enter the start_time_1=9:00AM in the log and after 1 hour if the job failed I need to enter as end_time_1= 10:00AM.<br />
Again we will re-run the job at 10:05 AM and this time i need to append start_time_2=10:05AM in the same log file and so on..........<br />
<br />
<br />
My log file should look like<br />
<br />
start_time_1=9:00AM<br />
end_time_1=10:00AM<br />
start_time_2=10:05AM<br />
end_time_2=11:05AM<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
.<br />
<br />
Please help.<br />
<br />
<acronym title="Practical Extraction and Report Language">Perl</acronym> script or K-shell script is fine<br />
<br />
<div align="center"><b>Moderation: Closed due to homework rule violation - template not followed.</b></div></div>

]]></content:encoded>
			<category domain="http://www.unix.com/homework-coursework-questions/"><![CDATA[Homework & Coursework Questions]]></category>
			<dc:creator>chinniforu2003</dc:creator>
			<guid isPermaLink="true">http://www.unix.com/homework-coursework-questions/123515-scripting-needed.html</guid>
		</item>
		<item>
			<title>String editing using sed? awk?</title>
			<link>http://www.unix.com/homework-coursework-questions/123509-string-editing-using-sed-awk-new-post.html</link>
			<pubDate>Wed, 11 Nov 2009 15:13:43 GMT</pubDate>
			<description>*1. The problem statement, all variables and given/known data:* 
  
*Problem Statement for project:* 
  
When an account is created on the CS Unix network, a  
public html directory is created in the account’s home directory. A default web page is put into that directory.  
  
Some users replace or...</description>
			<content:encoded><![CDATA[<div><b><font color="black"><font face="Verdana">1. The problem statement, all variables and given/known data:</font></font></b><br />
 <br />
<font face="Verdana"><font color="black"><b>Problem Statement for project:</b></font></font><br />
 <br />
<font face="Times New Roman"><font color="black">When an account is created on the CS Unix network, a </font></font><br />
<font color="black"><font face="Courier">public html </font></font><font color="black"><font face="Times New Roman">directory is created in the account’s home directory. A default web page is put into that directory. </font></font><br />
 <br />
<font color="black"><font face="Times New Roman">Some users replace or edit the default page, while others do not. We would like to add a new link from the department web page to another page which lists all students who have changed their web page from the default. We don’t want to track these things by hand, and we want the list to be automatically updated every night at 3:00AM.</font></font><br />
 <br />
 <br />
 <br />
<font color="black"><font face="Times New Roman">You are to write a script that will</font></font><br />
<font color="black"><font face="Times New Roman">1. find all users who are students and who have changed their web page from the default that</font></font><br />
<font color="black"><font face="Times New Roman">was provided when their account was created,</font></font><br />
<font color="black"><font face="Times New Roman">2. generate an HTML file named </font></font><font color="black"><font face="Courier">student web pages.html </font></font><font color="black"><font face="Times New Roman">which contains a nicely formatted list of links to each student web page that you found,</font></font><br />
<font color="black"><font face="Times New Roman">3. copy that file into a directory specified on the command line, and</font></font><br />
 <br />
 <br />
<font color="black"><font face="Times New Roman">4. make sure that anyone can read it.</font></font><br />
 <br />
<b><font color="black"><font face="Verdana">My Problem:</font></font></b><br />
 <br />
<font face="Calibri"><font size="3">I have edited the output of the above find command to a file that has lines that look like this:</font></font><br />
 <br />
<font face="Calibri"><font size="3">&lt;p&gt;&lt;a href=&quot;http://www.cs.ttu.edu/~name&quot;&gt;Link&lt;/a&gt;</font></font><br />
<font face="Calibri"><font size="3">&lt;p&gt;&lt;a href=&quot;http://www.cs.ttu.edu/~name2&quot;&gt;Link&lt;/a&gt;</font></font><br />
<font face="Calibri"><font size="3">&lt;p&gt;&lt;a href=&quot;http://www.cs.ttu.edu/~nameasdas&quot;&gt;Link&lt;/a&gt;</font></font><br />
<br />
 <br />
<font face="Calibri"><font size="3">What I need it to do now is take that line and turn it into this:</font></font><br />
 <br />
<font face="Calibri"><font size="3"><font face="Calibri"><font size="3">&lt;p&gt;&lt;a href=&quot;http://www.cs.ttu.edu/~name&quot;&gt;name&lt;/a&gt;</font></font><br />
<font face="Calibri"><font size="3">&lt;p&gt;&lt;a href=&quot;http://www.cs.ttu.edu/~name2&quot;&gt;name2&lt;/a&gt;</font></font><br />
<font face="Calibri"><font size="3">&lt;p&gt;&lt;a href=&quot;http://www.cs.ttu.edu/~nameasdas&quot;&gt;nameasdas&lt;/a&gt;</font></font><br />
</font></font><br />
<font face="Calibri"><font size="3">I have tried using <acronym title="Stream Editor">sed</acronym> and just can’t figure it out. Can anyone help?</font></font><br />
 <br />
 <br />
 <br />
<b><font color="black"><font face="Verdana">2. Relevant commands, code, scripts, algorithms:</font></font></b><br />
 <br />
<font color="black"><font face="Verdana"><acronym title="Stream Editor">Sed</acronym> ?? awk??</font></font><br />
 <br />
<b><font color="black"><font face="Verdana">3. The attempts at a solution (include all code and scripts):</font></font></b><br />
 <br />
 <br />
<b><font color="black"><font face="Verdana">4. Complete Name of School (University), City (State), Country, Name of Professor, and Course Number (Link to Course):</font></font></b><br />
 <br />
<font color="black"><font face="Verdana">Texas Tech University</font></font><br />
<font face="Verdana"><font color="black">Lubbock TX</font></font><br />
<font face="Verdana"><font color="black">USA</font></font><br />
<font face="Verdana"><font color="black">Dr. Pyeatt</font></font><br />
<font face="Verdana"><font color="black">CS 3352</font></font><br />
 <br />
 <br />
<font face="Verdana"><font color="black">Thanks for the help.</font></font></div>

]]></content:encoded>
			<category domain="http://www.unix.com/homework-coursework-questions/"><![CDATA[Homework & Coursework Questions]]></category>
			<dc:creator>peage1475</dc:creator>
			<guid isPermaLink="true">http://www.unix.com/homework-coursework-questions/123509-string-editing-using-sed-awk.html</guid>
		</item>
		<item>
			<title>Grep for modified time</title>
			<link>http://www.unix.com/homework-coursework-questions/123472-grep-modified-time-new-post.html</link>
			<pubDate>Wed, 11 Nov 2009 09:04:27 GMT</pubDate>
			<description><![CDATA[Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 
 
*1. The problem statement, all variables and given/known data:* 
 
is it possible to come up with a list of files that are modified before a certain number of hours only using...]]></description>
			<content:encoded><![CDATA[<div>Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted!<br />
<br />
<b>1. The problem statement, all variables and given/known data:</b><br />
<br />
is it possible to come up with a list of files that are modified before a certain number of hours only using the grep command? <br />
<br />
ex. list files that were modified less than 10 hours ago<br />
<br />
i've only managed to list files that were created on the same day, i can't seem to figure out how to work the time.<br />
<br />
<b>2. Relevant commands, code, scripts, algorithms:</b><br />
<br />
grep<br />
<br />
<b>3. The attempts at a solution (include all code and scripts):</b><br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">ls -ul | grep `date +%Y-%m-%d`</code><hr />
</div><br />
<b>4. Complete Name of School (University), City (State), Country, Name of Professor, and Course Number (Link to Course):</b><br />
p.61 Bash Guide for Beginners tld.org<br />
<br />
Note:  Without school/professor/course information, you will be banned if you post here! You must complete the entire template (not just parts of it).</div>

]]></content:encoded>
			<category domain="http://www.unix.com/homework-coursework-questions/"><![CDATA[Homework & Coursework Questions]]></category>
			<dc:creator>momo.reina</dc:creator>
			<guid isPermaLink="true">http://www.unix.com/homework-coursework-questions/123472-grep-modified-time.html</guid>
		</item>
		<item>
			<title>Searching Through File System using find -newer</title>
			<link>http://www.unix.com/homework-coursework-questions/123343-searching-through-file-system-using-find-newer-new-post.html</link>
			<pubDate>Mon, 09 Nov 2009 22:42:39 GMT</pubDate>
			<description>*1. The problem statement, all variables and given/known data:* 
  
*Problem Statement for project:* 
  
When an account is created on the CS Unix network, a  
public html directory is created in the account’s home directory. A default web page is put into that directory.  
  
 
Some users replace...</description>
			<content:encoded><![CDATA[<div><b>1. The problem statement, all variables and given/known data:</b><br />
 <br />
<font face="Times New Roman"><font face="Verdana"><b>Problem Statement for project:</b></font><br />
 <br />
When an account is created on the CS Unix network, a <br />
</font><div align="left"><font face="Courier">public html </font><font face="Times New Roman">directory is created in the account’s home directory. A default web page is put into that directory. </font></div> <br />
<br />
<div align="left"><font face="Times New Roman">Some users replace or edit the default page, while others do not. We would like to add a new link from the department web page to another page which lists all students who have changed their web page from the default. We don’t want to track these things by hand, and we want the list to be automatically updated every night at 3:00AM.</font></div><br />
 <br />
<br />
<div align="left"><font face="Times New Roman">You are to write a script that will</font><br />
<div align="left"><font face="Times New Roman">1. find all users who are students and who have changed their web page from the default that</font><br />
<font face="Times New Roman">was provided when their account was created,</font><br />
<font face="Times New Roman">2. generate an HTML file named </font><font face="Courier">student web pages.html </font><font face="Times New Roman">which contains a nicely formatted list of links to each student web page that you found,</font><br />
<font face="Times New Roman">3. copy that file into a directory specified on the command line, and</font></div><br />
<br />
<font face="Times New Roman">4. make sure that anyone can read it.</font></div> <br />
<div align="left"><font face="Times New Roman"><b><font face="Verdana">My Problem:</font></b></font><font face="Times New Roman"><br />
<font face="Verdana">I do not have a problem with this project just a single aspect for searching through the file system using find -newer. My problem is how to get the -newer file to be within the same users path that the find command is already transversing through. My attempts are below. Any help would be great. Thanks.</font></font></div><font face="Times New Roman"><br />
</font><br />
 <br />
<div align="left"><b>2. Relevant commands, code, scripts, algorithms:</b></div> <br />
<div align="left">find -newer</div> <br />
<div align="left"><b>3. The attempts at a solution (include all code and scripts):</b></div> <br />
<div align="left">Here is the command that I am using to transverse the file system:</div> <br />
<div align="left"><div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">$ find ./undergrad[1-5]/*/public_html/index.html</code><hr />
</div></div> <br />
<div align="left">The first * represents a user account within the 5 undergrad directories. I need to figure out how to use -newer to be in the same user account that the above command is in at the time is compares it to the -newer file.</div> <br />
<div align="left">Here is the command that I tried using but I don't think it worked.</div> <br />
<div align="left"><div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">$ find ./undergrad[1-5]/*/public_html/index.html -newer ./*/.profile</code><hr />
</div></div> <br />
<div align="left">I am trying to compare the index.html file of a user to their .profile file so see if it has been modified since the account was created. However, I think that newer is looking at the .profile of any directory from the current directory. </div> <br />
<div align="left"><b>4. Complete Name of School (University), City (State), Country, Name of Professor, and Course Number (Link to Course):</b></div> <br />
<div align="left">Texas Tech University<br />
Lubbock TX<br />
USA<br />
Dr. Pyeatt<br />
CS 3352<br />
 <br />
 <br />
Thanks for the help.</div></div>

]]></content:encoded>
			<category domain="http://www.unix.com/homework-coursework-questions/"><![CDATA[Homework & Coursework Questions]]></category>
			<dc:creator>peage1475</dc:creator>
			<guid isPermaLink="true">http://www.unix.com/homework-coursework-questions/123343-searching-through-file-system-using-find-newer.html</guid>
		</item>
		<item>
			<title>Need some help on using cat command</title>
			<link>http://www.unix.com/homework-coursework-questions/123300-need-some-help-using-cat-command-new-post.html</link>
			<pubDate>Mon, 09 Nov 2009 15:13:43 GMT</pubDate>
			<description><![CDATA[I have a file "sample.txt" with the content as below: 
 Hi 
 This is a Sample Text. 
  
 I need a single command using cat which serve the following purpose. 
  
 1.display the contents of sample.txt 
 2.append some text to it 
 3. and then exit]]></description>
			<content:encoded><![CDATA[<div>I have a file &quot;sample.txt&quot; with the content as below:<br />
 Hi<br />
 This is a Sample Text.<br />
 <br />
 I need a single command using cat which serve the following purpose.<br />
 <br />
 1.display the contents of sample.txt<br />
 2.append some text to it<br />
 3. and then exit<br />
 <br />
 But, all should be served by a sinle command.<img src="http://solaris.unix.com/images/smilies/confused.gif" border="0" alt="" /></div>

]]></content:encoded>
			<category domain="http://www.unix.com/homework-coursework-questions/"><![CDATA[Homework & Coursework Questions]]></category>
			<dc:creator>ashok.g</dc:creator>
			<guid isPermaLink="true">http://www.unix.com/homework-coursework-questions/123300-need-some-help-using-cat-command.html</guid>
		</item>
		<item>
			<title>Sorting help</title>
			<link>http://www.unix.com/homework-coursework-questions/123289-sorting-help-new-post.html</link>
			<pubDate>Mon, 09 Nov 2009 13:41:59 GMT</pubDate>
			<description><![CDATA[i have list of files: 
Wang De Wong CVPR 09.pdf 
Yaacob AFGR 99 Second edition.pdf 
Shimon CVPR 01.pdf 
Den CCC 97 long one.pdf 
Ronald De Bour CSPP 04.pdf 
..... 
 
how can i sort this directory so the output will be in the next format: 
<year>\t<conference/journal>\t<author list> - t is tab]]></description>
			<content:encoded><![CDATA[<div>i have list of files:<br />
Wang De Wong CVPR 09.pdf<br />
Yaacob AFGR 99 Second edition.pdf<br />
Shimon CVPR 01.pdf<br />
Den CCC 97 long one.pdf<br />
Ronald De Bour CSPP 04.pdf<br />
.....<br />
<br />
how can i sort this directory so the output will be in the next format:<br />
&lt;year&gt;\t&lt;conference/journal&gt;\t&lt;author list&gt; - t is tab<br />
(its sort by the year)<br />
example:<br />
1997 CCC Den <br />
1999 CVIU Yaacob<br />
2001 CVPR Shimon <br />
2004 CVPR Shi<br />
2004 CSPP Ronald<br />
2009 CVPR Wang<br />
 <br />
 <br />
 <br />
<b>TEL AVIV UNIVERSITY , ISRAEL City, Professor Cohen, and Course Number 206</b></div>

]]></content:encoded>
			<category domain="http://www.unix.com/homework-coursework-questions/"><![CDATA[Homework & Coursework Questions]]></category>
			<dc:creator>nirnir26</dc:creator>
			<guid isPermaLink="true">http://www.unix.com/homework-coursework-questions/123289-sorting-help.html</guid>
		</item>
		<item>
			<title>Compiler issue I think...</title>
			<link>http://www.unix.com/homework-coursework-questions/123235-compiler-issue-i-think-new-post.html</link>
			<pubDate>Sun, 08 Nov 2009 18:43:30 GMT</pubDate>
			<description><![CDATA[Use and complete the template provided. If you don't, your post may be deleted! 
 
*1. The problem statement, all variables and given/known data:* 
One problem says do the following problem using perl: 
A stamp dealer maintains a price list that displays the country, the Scott catalog number, year...]]></description>
			<content:encoded><![CDATA[<div>Use and complete the template provided. If you don't, your post may be deleted!<br />
<br />
<b>1. The problem statement, all variables and given/known data:</b><br />
One problem says do the following problem using <acronym title="Practical Extraction and Report Language">perl</acronym>:<br />
A stamp dealer maintains a price list that displays the country, the Scott catalog number, year of issue, description, and price:<br />
<br />
Sample entry: <br />
Kenya 288-92 1984 Heron Plover Thrush gonolek Apalis $6.60<br />
<br />
<br />
<b>2. Relevant commands, code, scripts, algorithms:</b><br />
This is what I have so far...<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">#!usr/bin/<acronym title="Practical Extraction and Report Language">perl</acronym><br />
#reads the lines from a file and formats the output and calculates a total price.<br />
<br />
Open (FILEIN, &quot;data.txt&quot;) || die (&quot;Cannot open file&quot;);<br />
ttlprc= 0;<br />
while($in = &lt;FILEIN&gt;)<br />
{<br />
&nbsp; ($con, $catnum, $yr, $str) =split (/\s/,$in, 4);<br />
&nbsp; $rts=reverse($str);<br />
&nbsp; ($prc, $desc) =split (/\s/, $rts, 2);<br />
&nbsp; print &quot;Country: $con\n&quot;;<br />
&nbsp; print &quot;Catagory Number: $catnum&quot;;<br />
&nbsp; print &quot;Year: $yr&quot;;<br />
&nbsp; print &quot;Description: $desc&quot;;<br />
&nbsp; print &quot;Price: $prc&quot;;<br />
&nbsp; $ttlprc= $ttlprc + $prc ;<br />
}<br />
<br />
print &quot;The total price is \$$ttlprc&quot;;</code><hr />
</div><br />
<br />
<b>3. The attempts at a solution (include all code and scripts):</b><br />
see above.<br />
<br />
<br />
<b>4. Complete Name of School (University), City (State), Country, Name of Professor, and Course Number (Link to Course):</b><br />
University Maryland University College, Adelphi Maryland, CMIS 325A<br />
<br />
Note:  Without school/professor/course information, you will be banned if you post here!<br />
<br />
I don't really want someone to &quot;solve&quot; this, I just can't get my complier to work.... if you could try to compile this and maybe suggest one... that would be great.  If you notice any obvious reason why I can't get this to run (it's grayed out when I attempt to run it) that would be great :P<br />
<br />
Thanks!</div>

]]></content:encoded>
			<category domain="http://www.unix.com/homework-coursework-questions/"><![CDATA[Homework & Coursework Questions]]></category>
			<dc:creator>Dalcron</dc:creator>
			<guid isPermaLink="true">http://www.unix.com/homework-coursework-questions/123235-compiler-issue-i-think.html</guid>
		</item>
		<item>
			<title><![CDATA[C++ struct pointers & functions]]></title>
			<link>http://www.unix.com/homework-coursework-questions/123119-c-struct-pointers-functions-new-post.html</link>
			<pubDate>Fri, 06 Nov 2009 18:34:17 GMT</pubDate>
			<description><![CDATA[Hi All, 
 
My latest assignment (practice not coursework!) is to write prototype interactive exam/test console application.  I've used structs to store the question information (not sure if this was the best way to do it?) and I have the following code that outputs each question and it's possible...]]></description>
			<content:encoded><![CDATA[<div>Hi All,<br />
<br />
My latest assignment (practice not coursework!) is to write prototype interactive exam/test console application.  I've used structs to store the question information (not sure if this was the best way to do it?) and I have the following code that outputs each question and it's possible answers:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; endl;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; &quot;Q&quot; &lt;&lt; iIndex &lt;&lt; &quot;: &quot; &lt;&lt; sQuestions[iIndex].caQuestion &lt;&lt; endl;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; endl;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; &quot;\tA: &quot; &lt;&lt; sQuestions[iIndex].caPossibleAnswer1 &lt;&lt; endl;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; &quot;\tB: &quot; &lt;&lt; sQuestions[iIndex].caPossibleAnswer2 &lt;&lt; endl;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; &quot;\tC: &quot; &lt;&lt; sQuestions[iIndex].caPossibleAnswer3 &lt;&lt; endl;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; &quot;\tD: &quot; &lt;&lt; sQuestions[iIndex].caPossibleAnswer4 &lt;&lt; endl;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; endl;</code><hr />
</div>We've been told to make the code as modular as possible so I'd like to have the above code in a function but I'm not sure how to pass the question index to it (I think via a pointer but I'm unsure of the mechanics) and whether or not the function will have any visibility of the rest of the structs components... Any pointers (pun intended!) to how I can do this? Or if it can be done...<br />
<br />
I'm also using the following code to load data into my struct. Visual C++ gives me warnings about using strcpy, is there a better way of doing this?<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&nbsp; &nbsp; &nbsp; &nbsp; // load the question data (if you can figure out pointers you could put this in a function)<br />
&nbsp; &nbsp; &nbsp; &nbsp; strcpy(sQuestions[0].caQuestion, &quot;What statement separator is commonly used in a for loop?&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; strcpy(sQuestions[0].caPossibleAnswer1, &quot;semicolon&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; strcpy(sQuestions[0].caPossibleAnswer2, &quot;comma&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; strcpy(sQuestions[0].caPossibleAnswer3, &quot;colon&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; strcpy(sQuestions[0].caPossibleAnswer4, &quot;quote&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; sQuestions[0].cCorrectAnswer = 'A';</code><hr />
</div>Many thanks,<br />
<br />
p.<br />
<br />
<br />
<b>4. Complete Name of School (University), City (State), Country, Name of Professor, and Course Number (Link to Course):</b><br />
<br />
e-Quals IT Practitioners Diploma - C++ Programming<br />
Farnborough Tech. UK.<br />
Dr. Usman Abdullahi<font color="#738fbf"><br />
<br />
<font size="1">---------- Post updated at 06:34 PM ---------- Previous update was at 03:24 PM ----------</font><br />
<br />
</font>Hi All,<br />
<br />
Doing some digging around I've found the answer to my problem - on page 168 of Herbert Schildt's &quot;C++ The Complete Reference&quot; I found a section entitled &quot;Passing Entire Structures to Functions&quot;.<br />
<br />
So I modified my function to look like this:<br />
<br />
<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">void displayQuestions(struct sQuestionFormat sQuestions, int iIndex)<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; endl;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; &quot;Q&quot; &lt;&lt; iIndex &lt;&lt; &quot;: &quot; &lt;&lt; sQuestions.caQuestion &lt;&lt; endl;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; endl;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; &quot;\tA: &quot; &lt;&lt; sQuestions.caPossibleAnswer1 &lt;&lt; endl;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; &quot;\tB: &quot; &lt;&lt; sQuestions.caPossibleAnswer2 &lt;&lt; endl;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; &quot;\tC: &quot; &lt;&lt; sQuestions.caPossibleAnswer3 &lt;&lt; endl;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; &quot;\tD: &quot; &lt;&lt; sQuestions.caPossibleAnswer4 &lt;&lt; endl;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cout &lt;&lt; endl;<br />
}</code><hr />
</div>The call to run the function from main looks like this:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; displayQuestions(sQuestions[iIndex], iIndex);</code><hr />
</div>And the structure is created like this:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">struct sQuestionFormat sQuestions[10];</code><hr />
</div>:)</div>

]]></content:encoded>
			<category domain="http://www.unix.com/homework-coursework-questions/"><![CDATA[Homework & Coursework Questions]]></category>
			<dc:creator>pondlife</dc:creator>
			<guid isPermaLink="true">http://www.unix.com/homework-coursework-questions/123119-c-struct-pointers-functions.html</guid>
		</item>
		<item>
			<title>Help with Simple Perl/Python Script</title>
			<link>http://www.unix.com/homework-coursework-questions/123048-help-simple-perl-python-script-new-post.html</link>
			<pubDate>Thu, 05 Nov 2009 20:58:53 GMT</pubDate>
			<description><![CDATA[I have the following problem, which I need done in Perl/ or  Python using Unix/linux filters...  
 
1.                 You have a very large file,  named 'ColCheckMe', tab-delmited, that you are asked to process.      You are told that each line in 'ColCheckMe' has  7 columns, and that the values...]]></description>
			<content:encoded><![CDATA[<div>I have the following problem, which I need done in <acronym title="Practical Extraction and Report Language">Perl</acronym>/ or  Python using Unix/linux filters... <br />
<br />
1.                 <font face="Calibri">You have a very large file,  named 'ColCheckMe', tab-delmited, that you are asked to process.</font>   <font face="Calibri">   You are told that each line in 'ColCheckMe' has  7 columns, and that the values in the 5th column are integers.</font><br />
  <font face="Calibri">Using <acronym title="Practical Extraction and Report Language">Perl</acronym>/python  (and standard LINUX/UNIX  filters), indicate how you would verify that these conditions were  satisfied in 'ColCheckMe'</font><br />
<br />
<br />
2.                 <font face="Calibri">In the same file, you are told  that each value in column 1 is unique. How would you verify that?</font><br />
<br />
<br />
<font face="Calibri">3. </font>                <font face="Calibri">Write  a shell function that counts the number of occurrences of the word  “SpecStr” in the file 'ColCheckMe'.</font>  <br />
<br />
<br />
Thanks a lot</div>

]]></content:encoded>
			<category domain="http://www.unix.com/homework-coursework-questions/"><![CDATA[Homework & Coursework Questions]]></category>
			<dc:creator>Swapnilsagarwal</dc:creator>
			<guid isPermaLink="true">http://www.unix.com/homework-coursework-questions/123048-help-simple-perl-python-script.html</guid>
		</item>
	</channel>
</rss>
