<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Unix &amp; Linux Q&amp;A | Student Projects</title>
	<atom:link href="https://studentprojects.in/category/software-development/unix-linux/unix-linux-faq/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Sun, 11 Dec 2022 04:28:54 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>Find a text inside multiple files in linux</title>
		<link>https://studentprojects.in/software-development/unix-linux/unix-linux-faq/find-text-multiple-files-linux/</link>
					<comments>https://studentprojects.in/software-development/unix-linux/unix-linux-faq/find-text-multiple-files-linux/#respond</comments>
		
		<dc:creator><![CDATA[Ranjith Kadamboor]]></dc:creator>
		<pubDate>Tue, 22 Feb 2011 11:56:42 +0000</pubDate>
				<category><![CDATA[Unix & Linux Q&A]]></category>
		<category><![CDATA[folder search]]></category>
		<category><![CDATA[vim editor]]></category>
		<category><![CDATA[search text]]></category>
		<category><![CDATA[linux]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=1475</guid>

					<description><![CDATA[<p>To find files that contain a text string in linux is very easy. Open terminal locate to the folder. Use below command. grep -lir &#8220;search text&#8221; * The -l switch outputs only the names of files in which the text occurs, the -i switch ignores the case, and the -r descends into sub directories.</p>
<p>The post <a href="https://studentprojects.in/software-development/unix-linux/unix-linux-faq/find-text-multiple-files-linux/">Find a text inside multiple files in linux</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>To find files that contain a text string in linux is very easy. Open terminal locate to the folder. Use below command.</p>
<blockquote><p><strong>grep -lir &#8220;search text&#8221; *</strong></p></blockquote>
<p>The -l switch outputs only the names of files in which the text occurs, the -i switch ignores the case, and the -r descends into sub directories.</p><p>The post <a href="https://studentprojects.in/software-development/unix-linux/unix-linux-faq/find-text-multiple-files-linux/">Find a text inside multiple files in linux</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/software-development/unix-linux/unix-linux-faq/find-text-multiple-files-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to kill any process in Linux?</title>
		<link>https://studentprojects.in/software-development/unix-linux/unix-linux-faq/how-to-kill-any-process-in-linux/</link>
					<comments>https://studentprojects.in/software-development/unix-linux/unix-linux-faq/how-to-kill-any-process-in-linux/#comments</comments>
		
		<dc:creator><![CDATA[surajk]]></dc:creator>
		<pubDate>Wed, 02 Feb 2011 14:36:33 +0000</pubDate>
				<category><![CDATA[Unix & Linux Q&A]]></category>
		<category><![CDATA[process id]]></category>
		<category><![CDATA[pid]]></category>
		<category><![CDATA[kill applications]]></category>
		<category><![CDATA[kill process]]></category>
		<category><![CDATA[linux]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=1290</guid>

					<description><![CDATA[<p>To kill any process yo need to first find out the process ID (PID) For example if you want to kill firfox #ps aux &#124; grep firefox This will generate: username   5365  0.0  0.0  3572  628 pts/0    S    11:00   0:00 grep firefox Now kill process using PID #kill 5365 #kill -9 5365 where -9 is</p>
<p>The post <a href="https://studentprojects.in/software-development/unix-linux/unix-linux-faq/how-to-kill-any-process-in-linux/">How to kill any process in Linux?</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>To kill any process yo need to first find out the process ID (PID)</p>
<p>For example if you want to kill firfox</p>
<blockquote><p>#ps aux | grep firefox</p></blockquote>
<p>This will generate:</p>
<p>username   5365  0.0  0.0  3572  628 pts/0    S    11:00   0:00 grep firefox</p>
<p>Now kill process using PID</p>
<blockquote><p>#kill 5365</p></blockquote>
<blockquote><p>#kill -9 5365</p></blockquote>
<p>where -9 is special Kill signal, which will kill the process.</p><p>The post <a href="https://studentprojects.in/software-development/unix-linux/unix-linux-faq/how-to-kill-any-process-in-linux/">How to kill any process in Linux?</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/software-development/unix-linux/unix-linux-faq/how-to-kill-any-process-in-linux/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How to select text vertically in vi/vim editor</title>
		<link>https://studentprojects.in/software-development/unix-linux/unix-linux-faq/how-to-select-text-vertically-in-vivim-editor/</link>
					<comments>https://studentprojects.in/software-development/unix-linux/unix-linux-faq/how-to-select-text-vertically-in-vivim-editor/#comments</comments>
		
		<dc:creator><![CDATA[Editorial Team]]></dc:creator>
		<pubDate>Wed, 19 Jan 2011 08:31:45 +0000</pubDate>
				<category><![CDATA[Unix & Linux Q&A]]></category>
		<category><![CDATA[virticle select]]></category>
		<category><![CDATA[vim]]></category>
		<category><![CDATA[vi editor]]></category>
		<category><![CDATA[cut copy paste]]></category>
		<category><![CDATA[linux]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=1185</guid>

					<description><![CDATA[<p>To select the text vertically first press escape if you are in insert mode. Then type: ^v (Control v) Then you can use arrow keys to select the text you want. After selecting the text use Delete to delete the text. y to copy the text p to paste the text</p>
<p>The post <a href="https://studentprojects.in/software-development/unix-linux/unix-linux-faq/how-to-select-text-vertically-in-vivim-editor/">How to select text vertically in vi/vim editor</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>To select the text vertically first press escape if you are in insert mode.<br />
Then type:</p>
<blockquote><p><strong>^v (Control v) </strong></p></blockquote>
<p>Then you can use arrow keys to select the text you want.</p>
<p>After selecting the text use</p>
<blockquote><p><strong>Delete</strong> to delete the text.<br />
<strong>y</strong> to copy the text<br />
<strong>p</strong> to paste the text</p></blockquote><p>The post <a href="https://studentprojects.in/software-development/unix-linux/unix-linux-faq/how-to-select-text-vertically-in-vivim-editor/">How to select text vertically in vi/vim editor</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/software-development/unix-linux/unix-linux-faq/how-to-select-text-vertically-in-vivim-editor/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
	</channel>
</rss>
