<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="https://script.spoken-tutorial.org/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://script.spoken-tutorial.org/index.php?action=history&amp;feed=atom&amp;title=Sed-Stream-Editor%2FC2%2FSed-commands-with-Files%2FEnglish</id>
		<title>Sed-Stream-Editor/C2/Sed-commands-with-Files/English - Revision history</title>
		<link rel="self" type="application/atom+xml" href="https://script.spoken-tutorial.org/index.php?action=history&amp;feed=atom&amp;title=Sed-Stream-Editor%2FC2%2FSed-commands-with-Files%2FEnglish"/>
		<link rel="alternate" type="text/html" href="https://script.spoken-tutorial.org/index.php?title=Sed-Stream-Editor/C2/Sed-commands-with-Files/English&amp;action=history"/>
		<updated>2026-05-13T15:05:22Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.23.17</generator>

	<entry>
		<id>https://script.spoken-tutorial.org/index.php?title=Sed-Stream-Editor/C2/Sed-commands-with-Files/English&amp;diff=54917&amp;oldid=prev</id>
		<title>Nancyvarkey at 09:06, 15 March 2021</title>
		<link rel="alternate" type="text/html" href="https://script.spoken-tutorial.org/index.php?title=Sed-Stream-Editor/C2/Sed-commands-with-Files/English&amp;diff=54917&amp;oldid=prev"/>
				<updated>2021-03-15T09:06:47Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;a href=&quot;https://script.spoken-tutorial.org/index.php?title=Sed-Stream-Editor/C2/Sed-commands-with-Files/English&amp;amp;diff=54917&amp;amp;oldid=54913&quot;&gt;Show changes&lt;/a&gt;</summary>
		<author><name>Nancyvarkey</name></author>	</entry>

	<entry>
		<id>https://script.spoken-tutorial.org/index.php?title=Sed-Stream-Editor/C2/Sed-commands-with-Files/English&amp;diff=54913&amp;oldid=prev</id>
		<title>Nirmala Venkat: Created page with &quot;  {| border=&quot;1&quot; |- || '''VISUAL CUE''' || '''NARRATION''' |- || '''Slide 1:''' || Welcome to the spoken tutorial''' '''on '''Sed Commands with Files.''' |- || '''Slide 2:'''...&quot;</title>
		<link rel="alternate" type="text/html" href="https://script.spoken-tutorial.org/index.php?title=Sed-Stream-Editor/C2/Sed-commands-with-Files/English&amp;diff=54913&amp;oldid=prev"/>
				<updated>2021-03-12T12:03:38Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;  {| border=&amp;quot;1&amp;quot; |- || &amp;#039;&amp;#039;&amp;#039;VISUAL CUE&amp;#039;&amp;#039;&amp;#039; || &amp;#039;&amp;#039;&amp;#039;NARRATION&amp;#039;&amp;#039;&amp;#039; |- || &amp;#039;&amp;#039;&amp;#039;Slide 1:&amp;#039;&amp;#039;&amp;#039; || Welcome to the spoken tutorial&amp;#039;&amp;#039;&amp;#039; &amp;#039;&amp;#039;&amp;#039;on &amp;#039;&amp;#039;&amp;#039;Sed Commands with Files.&amp;#039;&amp;#039;&amp;#039; |- || &amp;#039;&amp;#039;&amp;#039;Slide 2:&amp;#039;&amp;#039;&amp;#039;...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|| '''VISUAL CUE'''&lt;br /&gt;
|| '''NARRATION'''&lt;br /&gt;
|-&lt;br /&gt;
|| '''Slide 1:'''&lt;br /&gt;
|| Welcome to the spoken tutorial''' '''on '''Sed Commands with Files.'''&lt;br /&gt;
|-&lt;br /&gt;
|| '''Slide 2:'''&lt;br /&gt;
&lt;br /&gt;
'''Learning Objectives'''&lt;br /&gt;
|| In this tutorial, we will learn about&lt;br /&gt;
* Delete command&lt;br /&gt;
* Write command&lt;br /&gt;
* Read command&lt;br /&gt;
* Append command&lt;br /&gt;
* Insert command&lt;br /&gt;
* Change command&lt;br /&gt;
* Execute command&lt;br /&gt;
|-&lt;br /&gt;
|| '''Slide 3:'''&lt;br /&gt;
&lt;br /&gt;
'''System requirements'''&lt;br /&gt;
|| This tutorial is recorded using&lt;br /&gt;
* '''Ubuntu Linux '''OS version 18.04 &lt;br /&gt;
|-&lt;br /&gt;
|| '''Slide 4:'''&lt;br /&gt;
&lt;br /&gt;
'''Prerequisites'''&lt;br /&gt;
|| To follow this tutorial, you should know Basics of Linux.&lt;br /&gt;
&lt;br /&gt;
If not, then go through the relevant spoken tutorials on this website.&lt;br /&gt;
|-&lt;br /&gt;
|| '''Slide 5(a):'''&lt;br /&gt;
&lt;br /&gt;
'''Delete Command'''&lt;br /&gt;
&lt;br /&gt;
|| First we will see about the delete command in sed&lt;br /&gt;
* '''Sed''' command can be used to remove specific lines which matches a given pattern in the file.&lt;br /&gt;
* This command removes lines only from the pattern buffer.&lt;br /&gt;
* The original file remains unchanged.&lt;br /&gt;
|-&lt;br /&gt;
|| '''Slide 5(b):'''&lt;br /&gt;
&lt;br /&gt;
'''Syntax:'''&lt;br /&gt;
'''sed [range1][range2]d filename'''&lt;br /&gt;
'''Highlight according to narration'''&lt;br /&gt;
&lt;br /&gt;
|| This is the syntax for the delete command.* '''range1, range2''' are the starting and ending range.&lt;br /&gt;
* It can be either a line number or pattern strings.&lt;br /&gt;
* '''d '''specifies the delete option&lt;br /&gt;
|-&lt;br /&gt;
|| '''Slide 6:'''&lt;br /&gt;
&lt;br /&gt;
'''Code files - IndianBooks.txt'''&lt;br /&gt;
||&lt;br /&gt;
* The files used in this tutorial are available in the '''Code Files '''link on this tutorial page.&lt;br /&gt;
* Please download and extract them&lt;br /&gt;
* Make a copy and then use them while practising&lt;br /&gt;
|-&lt;br /&gt;
|| Open the terminal &lt;br /&gt;
|| Open the terminal by pressing '''Ctrl+Alt+T''' keys simultaneously.&lt;br /&gt;
&lt;br /&gt;
Press the enter key after every command.&lt;br /&gt;
|-&lt;br /&gt;
|| &amp;gt;&amp;gt; cat '''IndianBooks.txt'''&lt;br /&gt;
|| Let us open the file '''IndianBooks.txt '''which''' '''I have saved in the downloads folder.&lt;br /&gt;
&lt;br /&gt;
I’ll be using this file for demonstration of various file commands.&lt;br /&gt;
|-&lt;br /&gt;
|| &lt;br /&gt;
&amp;gt; '''sed ‘d’ IndianBooks.txt'''&lt;br /&gt;
||First we will see how the '''delete''' command is used in files.&lt;br /&gt;
&lt;br /&gt;
Type the command as shown&lt;br /&gt;
&lt;br /&gt;
We couldn’t see any output. Why?&lt;br /&gt;
&lt;br /&gt;
We didn’t give any line address. So '''Sed''' operates on every line by default.&lt;br /&gt;
&lt;br /&gt;
It deletes all the lines from the pattern buffer.&lt;br /&gt;
&lt;br /&gt;
Hence it does not print anything on the standard output.&lt;br /&gt;
|-&lt;br /&gt;
|| &amp;gt;'''sed ‘4d’ IndianBooks.txt'''&lt;br /&gt;
&lt;br /&gt;
Point to the output&lt;br /&gt;
|| Let us give the specific line number as shown for the '''Sed '''command to work.&lt;br /&gt;
&lt;br /&gt;
We can see the 4th line is deleted.&lt;br /&gt;
|-&lt;br /&gt;
|| '''sed ‘2,6d’ IndianBooks.txt'''&lt;br /&gt;
|| Type the command as shown.&lt;br /&gt;
&lt;br /&gt;
We can also give a range of line numbers that can be deleted.&lt;br /&gt;
&lt;br /&gt;
This command deletes all the lines from 2 to 6.&lt;br /&gt;
|-&lt;br /&gt;
||'''sed ‘/R K Narayan/d’ IndianBooks.txt'''&lt;br /&gt;
||We can specify patterns instead of line numbers as shown here.&lt;br /&gt;
&lt;br /&gt;
This has deleted the lines which have the author name as '''R K Narayan.'''&lt;br /&gt;
|-&lt;br /&gt;
|| &lt;br /&gt;
&lt;br /&gt;
&amp;gt; cat '''IndianBooks'''.txt&lt;br /&gt;
&lt;br /&gt;
Highlight the text between '''Malgudi''' and '''Crescent'''.&lt;br /&gt;
&lt;br /&gt;
&amp;gt;sed ‘/Malgudi/,/Crescent/d’ '''IndianBooks'''.txt&lt;br /&gt;
||We can also specify a range using a textual pattern.&lt;br /&gt;
&lt;br /&gt;
For example, we want to remove all the lines between the patterns '''Malgudi''' and '''Crescent'''.&lt;br /&gt;
&lt;br /&gt;
Type '''sed space within single quotes forward slash Malgudi forward slash comma forward slash Crescent forward slash d space IndianBooks.txt '''&lt;br /&gt;
&lt;br /&gt;
Look at the output.&lt;br /&gt;
|-&lt;br /&gt;
|| &amp;gt;sed ‘$d’ '''IndianBooks.txt'''&lt;br /&gt;
&lt;br /&gt;
'''Highlight $d'''&lt;br /&gt;
|| Type the command as shown.&lt;br /&gt;
&lt;br /&gt;
We can delete the last line of a file using the special character dollar $.&lt;br /&gt;
|-&lt;br /&gt;
|| &amp;gt;sed ‘1!d’ '''IndianBooks.txt'''&lt;br /&gt;
&lt;br /&gt;
'''Highlight 1d'''&lt;br /&gt;
&lt;br /&gt;
|| Next we will see how to use the negation operator.&lt;br /&gt;
&lt;br /&gt;
Type the command as shown.&lt;br /&gt;
&lt;br /&gt;
Here ‘1’ specifies the line number of the file.&lt;br /&gt;
&lt;br /&gt;
The negation operator''' with d '''indicates, not to delete the first line.&lt;br /&gt;
&lt;br /&gt;
We can see, this sed command removes all the lines except the first line.&lt;br /&gt;
|-&lt;br /&gt;
|| &amp;gt; sed ‘1d;$d’ '''IndianBooks.txt'''&lt;br /&gt;
&lt;br /&gt;
|| This command will delete the first and last line.&lt;br /&gt;
&lt;br /&gt;
We can specify the list of lines to be removed with semicolon as a delimiter.&lt;br /&gt;
|-&lt;br /&gt;
|| sed ‘/^1/d’ '''IndianBooks.txt'''&lt;br /&gt;
&lt;br /&gt;
|| This command removes all the lines that begin with ‘1’.&lt;br /&gt;
&lt;br /&gt;
Recall that the caret(^) symbol specifies the starting of a line.&lt;br /&gt;
&lt;br /&gt;
We can see that line 1 and line 10 are deleted.&lt;br /&gt;
|-&lt;br /&gt;
|| &amp;gt;sed ‘/3$/d’ &amp;lt;'''IndianBooks.txt'''&lt;br /&gt;
&lt;br /&gt;
|| Type the command as shown.&lt;br /&gt;
&lt;br /&gt;
This command deletes all the lines that end with '3'. &lt;br /&gt;
&lt;br /&gt;
$ is to indicate the end of the line.&lt;br /&gt;
&lt;br /&gt;
We can see that the lines ending with 3 in the published year are deleted.&lt;br /&gt;
|-&lt;br /&gt;
|| &amp;gt;sed '/[38]$/d' '''IndianBooks.txt'''&lt;br /&gt;
&lt;br /&gt;
|| This sed command deletes all the lines that end with either 3 or 8.&lt;br /&gt;
&lt;br /&gt;
Note that the lines ending with 3 or 8 in the published year are deleted.&lt;br /&gt;
|-&lt;br /&gt;
|| '''Slide 7: Delete command: Note:'''&lt;br /&gt;
||In all the above examples, the sed command does not remove the lines from the source file.&lt;br /&gt;
&lt;br /&gt;
It prints the content of the file on the Linux terminal by removing the lines. &lt;br /&gt;
&lt;br /&gt;
To remove the lines from the source file itself, use -i option with sed command. &lt;br /&gt;
&lt;br /&gt;
Otherwise, you can redirect the output of the sed command to another file. &lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| &lt;br /&gt;
||Next we will see about the write command.&lt;br /&gt;
|-&lt;br /&gt;
||'''Slide 8:'''&lt;br /&gt;
'''Write command'''&lt;br /&gt;
&lt;br /&gt;
||Sed reads a line and places it in a pattern buffer.&lt;br /&gt;
&lt;br /&gt;
Then writes the pattern buffer to the given output file according to the given options.&lt;br /&gt;
|-&lt;br /&gt;
|| '''Slide 9:'''&lt;br /&gt;
&lt;br /&gt;
'''Write command'''&lt;br /&gt;
&lt;br /&gt;
Syntax: sed 'ADDRESS w outputfile' inputfile &lt;br /&gt;
&lt;br /&gt;
|| Here '''‘w'''’ represents the write command. It should be at the end of all options.&lt;br /&gt;
&lt;br /&gt;
'''Address''' can be either line numbers or pattern strings.&lt;br /&gt;
&lt;br /&gt;
'''outputfile '''is the filename where the output has to be stored.&lt;br /&gt;
&lt;br /&gt;
'''inputfile''' is the input file for the command to execute.&lt;br /&gt;
&lt;br /&gt;
Note that sed creates an output file if it is not present and over writes if it is already present.&lt;br /&gt;
|-&lt;br /&gt;
|| &lt;br /&gt;
|| Switch back to the terminal.&lt;br /&gt;
|-&lt;br /&gt;
||sed -n ‘w books_copy.txt’ '''IndianBooks.txt'''&lt;br /&gt;
&lt;br /&gt;
|| Type the write command as shown: &lt;br /&gt;
&lt;br /&gt;
If you open '''books_copy.txt''', you will see the copy of the content of '''IndianBooks.txt'''&lt;br /&gt;
|-&lt;br /&gt;
|| no highlight&lt;br /&gt;
&lt;br /&gt;
&amp;gt; sed -n ‘1~2 w out.txt’ '''IndianBooks'''.txt&lt;br /&gt;
&lt;br /&gt;
|| We can copy only certain line numbers to another file.&lt;br /&gt;
&lt;br /&gt;
Type the command to copy all odd lines to another file.&lt;br /&gt;
&lt;br /&gt;
We can see only the odd lines are copied to''' out.txt'''&lt;br /&gt;
|-&lt;br /&gt;
|| sed -n ‘/Gandhi/ w GandhiBooks.txt’ '''IndianBooks.txt'''&lt;br /&gt;
&lt;br /&gt;
|| Type the command as shown.&lt;br /&gt;
&lt;br /&gt;
We can give patterns that have to be copied to another file.&lt;br /&gt;
&lt;br /&gt;
This command will store the books with author name Gandhi to another file.&lt;br /&gt;
&lt;br /&gt;
Let us see the output file '''GandhiBooks.txt'''&lt;br /&gt;
|-&lt;br /&gt;
|| &lt;br /&gt;
|| Next we will see the '''Read''' command.&lt;br /&gt;
|-&lt;br /&gt;
|| '''Slide 10:'''&lt;br /&gt;
&lt;br /&gt;
'''Read Command'''&lt;br /&gt;
|| Using the Read command, we can read the content of another file.&lt;br /&gt;
&lt;br /&gt;
It appends with each line of the input file as specified in the sed command pattern.&lt;br /&gt;
|-&lt;br /&gt;
|| &lt;br /&gt;
|| Switch back to the terminal.&lt;br /&gt;
|-&lt;br /&gt;
|| &amp;gt; cat '''new_books.txt'''&lt;br /&gt;
|| Let us open the file '''new_books.txt '''which has 3 lines.&lt;br /&gt;
|-&lt;br /&gt;
|| '''sed ‘4 r&amp;lt; new_books.txt’ IndianBooks.txt'''&lt;br /&gt;
|| This command instructs sed to read the content from '''new_book.txt .'''&lt;br /&gt;
&lt;br /&gt;
Then it inserts after the 4th line in '''IndianBooks.txt'''&lt;br /&gt;
&lt;br /&gt;
Here 4 specifies the line number and r specifies the read command.&lt;br /&gt;
|-&lt;br /&gt;
|| '''Slide 11:'''&lt;br /&gt;
&lt;br /&gt;
'''Assignment'''&lt;br /&gt;
||As an assignment, try the below commands and see the output.&lt;br /&gt;
&lt;br /&gt;
'''sed ‘4,6 r new_books.txt’ IndianBooks.txt'''&lt;br /&gt;
|-&lt;br /&gt;
|| '''Append command'''&lt;br /&gt;
|| Next we will see about the '''Append''' command&lt;br /&gt;
|-&lt;br /&gt;
|| &lt;br /&gt;
'''&amp;gt; sed ‘$ a 11. Broken wings, Sarojini Naidu, 1916’ IndianBooks.txt'''&lt;br /&gt;
&lt;br /&gt;
|| Let us append a new book entry at the end of the '''IndianBooks'''.'''txt''' file.&lt;br /&gt;
&lt;br /&gt;
Type the command with the new book entry as shown.&lt;br /&gt;
&lt;br /&gt;
Here ‘a’ indicates append command and $ indicates the end of the file.&lt;br /&gt;
|-&lt;br /&gt;
|| '''&amp;gt;sed ‘6 a 11. Broken wings, Sarojini Naidu, 1916’ IndianBooks.txt'''&lt;br /&gt;
&lt;br /&gt;
|| Suppose if we want to insert in between the lines.&lt;br /&gt;
&lt;br /&gt;
Type the command with line number as shown.&lt;br /&gt;
&lt;br /&gt;
Here 6 indicates the line number and ‘a’ is the append command.&lt;br /&gt;
|-&lt;br /&gt;
|| '''&amp;gt;sed ‘/Hind Swaraj/ a 11. Broken wings, Sarojini Naidu, 1916’ IndianBooks.txt'''&lt;br /&gt;
&lt;br /&gt;
Highlight /'''Hind Swaraj/'''&lt;br /&gt;
|| This command specifies a text pattern instead of line number.&lt;br /&gt;
&lt;br /&gt;
Look at the output.&lt;br /&gt;
&lt;br /&gt;
The new book entry has appended after the pattern ‘Hind swaraj’.&lt;br /&gt;
|-&lt;br /&gt;
|| '''&amp;gt; sed ‘/My/ a 11. Broken wings, Sarojini Naidu, 1916’ IndianBooks.txt'''&lt;br /&gt;
&lt;br /&gt;
Highlight /'''My/'''&lt;br /&gt;
&lt;br /&gt;
|| Type this command:&lt;br /&gt;
&lt;br /&gt;
If there are multiple patterns matching, then the text is appended after each match.&lt;br /&gt;
|-&lt;br /&gt;
|| &lt;br /&gt;
|| Next we will see the '''Insert''' command.&lt;br /&gt;
|-&lt;br /&gt;
|| '''Insert command'''&lt;br /&gt;
&lt;br /&gt;
'''&amp;gt; sed ‘3 i 3. Our films, Their Films, Satyajit Ray, 1976’ IndianBooks.txt'''&lt;br /&gt;
&lt;br /&gt;
'''Highlight 3 and ‘i’'''&lt;br /&gt;
|| Insert command is the same as append command.&lt;br /&gt;
&lt;br /&gt;
But it inserts a line before a specific position.&lt;br /&gt;
&lt;br /&gt;
Type the command as shown:&lt;br /&gt;
&lt;br /&gt;
This command inserts the new text before the third line.&lt;br /&gt;
&lt;br /&gt;
Here 3 is the line number and ‘i’ represents the insert command.&lt;br /&gt;
|-&lt;br /&gt;
|| '''change command'''&lt;br /&gt;
|| Next we will see about the '''change''' or Replace command.&lt;br /&gt;
&lt;br /&gt;
This command replaces the existing line with new text.&lt;br /&gt;
|-&lt;br /&gt;
|| '''&amp;gt; sed ‘3 c 3. Our films, Their Films, Satyajit Ray, 1976’ IndianBooks.txt'''&lt;br /&gt;
|| Let us replace the third line in''' IndianBooks.txt '''with some new text.&lt;br /&gt;
&lt;br /&gt;
Type the command as shown.&lt;br /&gt;
&lt;br /&gt;
‘c’ indicates the change command.&lt;br /&gt;
&lt;br /&gt;
We can see the third line is replaced with the new text.&lt;br /&gt;
|-&lt;br /&gt;
|| '''&amp;gt; sed ‘6, 8 c 3. Our films, Their Films, Satyajit Ray, 1976’ IndianBooks.txt'''&lt;br /&gt;
|| We can also replace multiple lines with a single line.&lt;br /&gt;
&lt;br /&gt;
Type the command as shown.&lt;br /&gt;
&lt;br /&gt;
The lines 6 to 8 are replaced with the new text.&lt;br /&gt;
|-&lt;br /&gt;
|| &lt;br /&gt;
|| Next we will see the execute command.&lt;br /&gt;
|-&lt;br /&gt;
|| '''Execute command'''&lt;br /&gt;
&lt;br /&gt;
'''&amp;gt;&amp;gt; sed ‘4 e date’ IndianBooks.txt'''&lt;br /&gt;
|| Type the command as shown. &lt;br /&gt;
&lt;br /&gt;
'''e''' represent the execute command.&lt;br /&gt;
&lt;br /&gt;
This will execute the external command and insert at the matched pattern.&lt;br /&gt;
&lt;br /&gt;
We can see the date is inserted at the fourth line.&lt;br /&gt;
|-&lt;br /&gt;
|| '''Slide 12:'''&lt;br /&gt;
&lt;br /&gt;
'''Summary'''&lt;br /&gt;
|| With this we come to the end of this tutorial. Let us summarize.&lt;br /&gt;
|-&lt;br /&gt;
|| &lt;br /&gt;
|| In this tutorial, we learnt&lt;br /&gt;
* Delete command&lt;br /&gt;
* Write command&lt;br /&gt;
* Read command&lt;br /&gt;
* Append command&lt;br /&gt;
* Insert command&lt;br /&gt;
* Change command&lt;br /&gt;
* Execute command&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|| '''Slide 13:'''&lt;br /&gt;
&lt;br /&gt;
'''Assignment:'''&lt;br /&gt;
|| As an Assignment, try the below commands and see the output.&lt;br /&gt;
&lt;br /&gt;
&amp;gt; sed ‘4,6 r date’ '''IndianBooks'''.txt&lt;br /&gt;
&lt;br /&gt;
&amp;gt; sed ‘/My/ e date’ '''IndianBooks'''.txt&lt;br /&gt;
|-&lt;br /&gt;
|| '''Slide 14:'''&lt;br /&gt;
&lt;br /&gt;
'''(About Spoken Tutorial Project)'''&lt;br /&gt;
|| The video at the following link, summarizes the''' Spoken Tutorial '''project.&lt;br /&gt;
&lt;br /&gt;
Please download and watch it.&lt;br /&gt;
|-&lt;br /&gt;
|| '''Slide 15:'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''(About Spoken Tutorial Project)'''&lt;br /&gt;
|| The '''Spoken Tutorial''' Project Team conducts workshops and gives certificates.&lt;br /&gt;
&lt;br /&gt;
For more details, please write to us.&lt;br /&gt;
|-&lt;br /&gt;
|| '''Slide 16:'''&lt;br /&gt;
&lt;br /&gt;
'''Forum questions:'''&lt;br /&gt;
|| Please post your timed queries on this forum.&lt;br /&gt;
|-&lt;br /&gt;
|| '''Slide 17: '''&lt;br /&gt;
&lt;br /&gt;
'''Acknowledgement'''&lt;br /&gt;
|| Spoken Tutorial project is funded by the Ministry of Education (MoE), Govt. of India.&lt;br /&gt;
|-&lt;br /&gt;
|| &lt;br /&gt;
|| This is Pooja from Spoken Tutorial project signing off.&lt;br /&gt;
&lt;br /&gt;
Thanks for joining.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Nirmala Venkat</name></author>	</entry>

	</feed>