<?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>Raju, Author at Linuxcent</title>
	<atom:link href="https://linuxcent.com/author/raju/feed/" rel="self" type="application/rss+xml" />
	<link>https://linuxcent.com/author/raju/</link>
	<description>Infrastructure security, from the kernel up.</description>
	<lastBuildDate>Wed, 08 Mar 2023 05:13:54 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.3</generator>

<image>
	<url>https://linuxcent.com/wp-content/uploads/2026/04/favicon-512x512-1-150x150.png</url>
	<title>Raju, Author at Linuxcent</title>
	<link>https://linuxcent.com/author/raju/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">211632295</site>	<item>
		<title>Bash How to Loop through Files</title>
		<link>https://linuxcent.com/bash-how-to-loop-through-files/</link>
					<comments>https://linuxcent.com/bash-how-to-loop-through-files/#respond</comments>
		
		<dc:creator><![CDATA[Raju]]></dc:creator>
		<pubDate>Wed, 08 Mar 2023 03:51:18 +0000</pubDate>
				<category><![CDATA[Bash]]></category>
		<guid isPermaLink="false">https://linuxcent.com/?p=1032</guid>

					<description><![CDATA[<p><span class="span-reading-time rt-reading-time" style="display: block;"><span class="rt-label rt-prefix">Reading Time: </span> <span class="rt-time"> &#60; 1</span> <span class="rt-label rt-postfix">minute</span></span>Bash How to Loop through Files You can use it for the loop. Here is the syntax: for ELEMENT in $ARRAY; do command; done Let&#8217;s try in in live example. First, create a new directory: mkdir /root/test cd /root/test touch /root/test/sample.sh touch /root/test/example.sh touch /root/test/document.doc Secondly, we process all files that have suffix .sh with ... <a title="Bash How to Loop through Files" class="read-more" href="https://linuxcent.com/bash-how-to-loop-through-files/" aria-label="Read more about Bash How to Loop through Files">Read more</a></p>
<p>The post <a href="https://linuxcent.com/bash-how-to-loop-through-files/">Bash How to Loop through Files</a> appeared first on <a href="https://linuxcent.com">Linuxcent</a>.</p>
]]></description>
										<content:encoded><![CDATA[<span class="span-reading-time rt-reading-time" style="display: block;"><span class="rt-label rt-prefix">Reading Time: </span> <span class="rt-time"> &lt; 1</span> <span class="rt-label rt-postfix">minute</span></span><h2>Bash How to Loop through Files</h2>
<p>You can use it for the loop. Here is the syntax: for ELEMENT in $ARRAY; do command; done</p>
<p>Let&#8217;s try in in live example. First, create a new directory:</p>
<pre>mkdir /root/test
cd /root/test
touch /root/test/sample.sh
touch /root/test/example.sh
touch /root/test/document.doc</pre>
<p>Secondly, we process all files that have suffix .sh with for loop:</p>
<pre>for FILE in /root/test/*.sh
do echo "Processing ${FILE} file.."
done</pre>
<p>Output: Processing /root/test/example.sh file.. Processing /root/test/sample.sh file..</p>
<p>Based on the results of output (above), we can see that the loop processes all files in the /root/test, which have the suffix .sh</p>
<p>If you want to process command-line arguments use:</p>
<pre>for FILE in "$*"
do
echo "Processing $FILE" file.</pre>
<p>$* expands to file names of all files in the current directory.</p>
<p><a class="a2a_button_mastodon" href="https://www.addtoany.com/add_to/mastodon?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-how-to-loop-through-files%2F&amp;linkname=Bash%20How%20to%20Loop%20through%20Files" title="Mastodon" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-how-to-loop-through-files%2F&amp;linkname=Bash%20How%20to%20Loop%20through%20Files" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-how-to-loop-through-files%2F&amp;linkname=Bash%20How%20to%20Loop%20through%20Files" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_reddit" href="https://www.addtoany.com/add_to/reddit?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-how-to-loop-through-files%2F&amp;linkname=Bash%20How%20to%20Loop%20through%20Files" title="Reddit" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_x" href="https://www.addtoany.com/add_to/x?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-how-to-loop-through-files%2F&amp;linkname=Bash%20How%20to%20Loop%20through%20Files" title="X" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-how-to-loop-through-files%2F&amp;linkname=Bash%20How%20to%20Loop%20through%20Files" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_copy_link" href="https://www.addtoany.com/add_to/copy_link?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-how-to-loop-through-files%2F&amp;linkname=Bash%20How%20to%20Loop%20through%20Files" title="Copy Link" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Flinuxcent.com%2Fbash-how-to-loop-through-files%2F&#038;title=Bash%20How%20to%20Loop%20through%20Files" data-a2a-url="https://linuxcent.com/bash-how-to-loop-through-files/" data-a2a-title="Bash How to Loop through Files"></a></p><p>The post <a href="https://linuxcent.com/bash-how-to-loop-through-files/">Bash How to Loop through Files</a> appeared first on <a href="https://linuxcent.com">Linuxcent</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://linuxcent.com/bash-how-to-loop-through-files/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1032</post-id>	</item>
		<item>
		<title>Bash How to Wait Seconds</title>
		<link>https://linuxcent.com/bash-how-to-wait-seconds/</link>
					<comments>https://linuxcent.com/bash-how-to-wait-seconds/#respond</comments>
		
		<dc:creator><![CDATA[Raju]]></dc:creator>
		<pubDate>Wed, 08 Mar 2023 02:51:37 +0000</pubDate>
				<category><![CDATA[Bash]]></category>
		<guid isPermaLink="false">https://linuxcent.com/?p=1030</guid>

					<description><![CDATA[<p><span class="span-reading-time rt-reading-time" style="display: block;"><span class="rt-label rt-prefix">Reading Time: </span> <span class="rt-time"> &#60; 1</span> <span class="rt-label rt-postfix">minute</span></span>Bash How to Wait Seconds How can we in the script wait for it until the system completes some tasks? The answer is to use sleep. This command suspends the script so that the script is low almost no system resources. Timing is sufficient. Do you want to wait some seconds? In the next example, ... <a title="Bash How to Wait Seconds" class="read-more" href="https://linuxcent.com/bash-how-to-wait-seconds/" aria-label="Read more about Bash How to Wait Seconds">Read more</a></p>
<p>The post <a href="https://linuxcent.com/bash-how-to-wait-seconds/">Bash How to Wait Seconds</a> appeared first on <a href="https://linuxcent.com">Linuxcent</a>.</p>
]]></description>
										<content:encoded><![CDATA[<span class="span-reading-time rt-reading-time" style="display: block;"><span class="rt-label rt-prefix">Reading Time: </span> <span class="rt-time"> &lt; 1</span> <span class="rt-label rt-postfix">minute</span></span><h2>Bash How to Wait Seconds</h2>
<p>How can we in the script wait for it until the system completes some tasks? The answer is to use sleep. This command suspends the script so that the script is low almost no system resources. Timing is sufficient.</p>
<p>Do you want to wait some seconds? In the next example, we will wait one second:</p>
<pre>sleep 1</pre>
<p>To turn off the script only for a split second? You can. This example shows the ingested sleep 100ms:</p>
<pre>sleep 0.1</pre>
<p>In this example, we will wait 20 minutes:</p>
<pre>sleep 20m</pre>
<p>In the next example, we will wait 8 hours:</p>
<pre>sleep 8h</pre>
<p>Do you want to wait several days? This is possible if you use a parameter d. However, consider using a cron scheduler. It is robust. Can you schedule to run it in your scripts at specified times and periodic runs?</p>
<p>In the last example, we will wait 7 days:</p>
<pre>sleep 7d</pre>
<p>Bash provides command wait to wait for the process/processes given as arguments:</p>
<pre>wait $PID</pre>
<p>PID is processing ID. &#8216;wait ${!}&#8217; waits until the last background process is completed.</p>
<p><a class="a2a_button_mastodon" href="https://www.addtoany.com/add_to/mastodon?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-how-to-wait-seconds%2F&amp;linkname=Bash%20How%20to%20Wait%20Seconds" title="Mastodon" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-how-to-wait-seconds%2F&amp;linkname=Bash%20How%20to%20Wait%20Seconds" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-how-to-wait-seconds%2F&amp;linkname=Bash%20How%20to%20Wait%20Seconds" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_reddit" href="https://www.addtoany.com/add_to/reddit?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-how-to-wait-seconds%2F&amp;linkname=Bash%20How%20to%20Wait%20Seconds" title="Reddit" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_x" href="https://www.addtoany.com/add_to/x?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-how-to-wait-seconds%2F&amp;linkname=Bash%20How%20to%20Wait%20Seconds" title="X" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-how-to-wait-seconds%2F&amp;linkname=Bash%20How%20to%20Wait%20Seconds" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_copy_link" href="https://www.addtoany.com/add_to/copy_link?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-how-to-wait-seconds%2F&amp;linkname=Bash%20How%20to%20Wait%20Seconds" title="Copy Link" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Flinuxcent.com%2Fbash-how-to-wait-seconds%2F&#038;title=Bash%20How%20to%20Wait%20Seconds" data-a2a-url="https://linuxcent.com/bash-how-to-wait-seconds/" data-a2a-title="Bash How to Wait Seconds"></a></p><p>The post <a href="https://linuxcent.com/bash-how-to-wait-seconds/">Bash How to Wait Seconds</a> appeared first on <a href="https://linuxcent.com">Linuxcent</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://linuxcent.com/bash-how-to-wait-seconds/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1030</post-id>	</item>
		<item>
		<title>Bash How to Print Array</title>
		<link>https://linuxcent.com/bash-how-to-print-array/</link>
					<comments>https://linuxcent.com/bash-how-to-print-array/#respond</comments>
		
		<dc:creator><![CDATA[Raju]]></dc:creator>
		<pubDate>Tue, 07 Mar 2023 05:58:20 +0000</pubDate>
				<category><![CDATA[Bash]]></category>
		<guid isPermaLink="false">https://linuxcent.com/?p=1011</guid>

					<description><![CDATA[<p><span class="span-reading-time rt-reading-time" style="display: block;"><span class="rt-label rt-prefix">Reading Time: </span> <span class="rt-time"> 3</span> <span class="rt-label rt-postfix">minutes</span></span>Bash How to Print Array Arrays are collection of elements, The Arrays in bash are indexed from 0 (zero-based). Below is the definition on an Array in Bash my_array=(zero one two three four) Now our array is defined. Here is exactly how the my_array is stored on BASH: my_array=([0]="zero" [1]="one" [2]="two" [3]="three" [4]="four") You can ... <a title="Bash How to Print Array" class="read-more" href="https://linuxcent.com/bash-how-to-print-array/" aria-label="Read more about Bash How to Print Array">Read more</a></p>
<p>The post <a href="https://linuxcent.com/bash-how-to-print-array/">Bash How to Print Array</a> appeared first on <a href="https://linuxcent.com">Linuxcent</a>.</p>
]]></description>
										<content:encoded><![CDATA[<span class="span-reading-time rt-reading-time" style="display: block;"><span class="rt-label rt-prefix">Reading Time: </span> <span class="rt-time"> 3</span> <span class="rt-label rt-postfix">minutes</span></span><h2>Bash How to Print Array</h2>
<p>Arrays are collection of elements, The Arrays in bash are indexed from 0 (zero-based).<br />
Below is the definition on an Array in Bash<br />
my_array=(zero one two three four)</p>
<p>Now our array is defined.<br />
Here is exactly how the my_array is stored on BASH:</p>
<pre>my_array=([0]="zero" [1]="one" [2]="two" [3]="three" [4]="four")</pre>
<p>You can explicit define an array:</p>
<pre>declare -a MY_ARRAY</pre>
<p>You can view the declarations along with other environment variables using the declare command.</p>
<pre>declare -p my_array
declare -a my_array=([0]="zero" [1]="one" [2]="two" [3]="three" [4]="four")</pre>
<p>Now if you try to print the array:</p>
<pre>my_array=(zero one two three four)
echo $my_array
zero</pre>
<p>By default only the first element value is printed which belongs to the 0 index.</p>
<p>To print the first element of the array using the indexing:</p>
<pre>my_array=(zero one two three four)
echo ${my_array[0]}
zero</pre>
<p>The change we noticed here is the use of the Curly Braces &#8216;{}&#8217;, its used to refer to the value of an item in the array. The curly braces are required to avoid issues with path name expansion.</p>
<p>To read all elements of the array use the symbols &#8220;@&#8221; or &#8220;*&#8221;.</p>
<pre>echo ${my_array[@]}
zero one two three four
</pre>
<pre>echo ${my_array[*]}
zero one two three four
</pre>
<p>The difference between &#8220;$@&#8221; and &#8220;$*&#8221; is &#8220;$@&#8221; expands each element as a separate argument, however &#8220;$*&#8221; expand to the arguments merged into one argument.</p>
<p>To prove this, print the index elements followed by $@ or $* format.</p>
<pre>echo ${my_array[$*0]}
zero</pre>
<pre>echo ${my_array[$@1]}
one</pre>
<pre>echo ${my_array[$*2]}
two</pre>
<h3>Getting the Length of the Array</h3>
<p>If you need to get the length of the array uses the symbol &#8220;#&#8221; before the name of the array:</p>
<pre>echo "${#my_array[*]}"
5
</pre>
<h2>How do I print an array in bash?</h2>
<p>Print Bash Array</p>
<p>We can use the keyword &#8216;declare&#8217; with a &#8216;-p&#8217; option to print all the elements of a Bash Array with all the indexes and details. The syntax to print the Bash Array can be defined as: declare -p ARRAY_NAME.</p>
<h2>How do I print in bash?</h2>
<p>After typing in this program in your Bash file, you need to save it by pressing Ctrl +S and then close it. In this program, the echo command and the printf command is used to print the output on the console.</p>
<div class="wWOJcd" tabindex="0" role="button" aria-controls="exacc_n_aMYbf-GJD_wAORl7XoDg43" aria-expanded="true" aria-labelledby="exacc_n_aMYbf-GJD_wAORl7XoDg42">
<h2 id="exacc_n_aMYbf-GJD_wAORl7XoDg42" class="iDjcJe IX9Lgd wwB5gf">How do you print an array element in a new line in Shell?</h2>
<div class="r21Kzd" data-hveid="CC4QAQ" data-ved="2ahUKEwj3yafxkpD0AhWQP3AKHZFLDe0Quk56BAguEAE">To print each word on a new line, we need to use the <b>keys “%s&#8217;\n”</b>. &#8216;%s&#8217; is to read the string till the end. At the same time, &#8216;\n&#8217; moves the words to the next line. To display the content of the array, we will not use the “#” sign.</div>
</div>
<div data-hveid="CC4QAQ" data-ved="2ahUKEwj3yafxkpD0AhWQP3AKHZFLDe0Quk56BAguEAE"></div>
<h2 data-hveid="CC4QAQ" data-ved="2ahUKEwj3yafxkpD0AhWQP3AKHZFLDe0Quk56BAguEAE">How do I display all array elements at once?</h2>
<div data-hveid="CC4QAQ" data-ved="2ahUKEwj3yafxkpD0AhWQP3AKHZFLDe0Quk56BAguEAE"><strong>Program:</strong></div>
<ol>
<li data-hveid="CC4QAQ" data-ved="2ahUKEwj3yafxkpD0AhWQP3AKHZFLDe0Quk56BAguEAE">public class PrintArray {</li>
<li data-hveid="CC4QAQ" data-ved="2ahUKEwj3yafxkpD0AhWQP3AKHZFLDe0Quk56BAguEAE">public static void main(String[] args) {</li>
<li data-hveid="CC4QAQ" data-ved="2ahUKEwj3yafxkpD0AhWQP3AKHZFLDe0Quk56BAguEAE">//Initialize array.</li>
<li data-hveid="CC4QAQ" data-ved="2ahUKEwj3yafxkpD0AhWQP3AKHZFLDe0Quk56BAguEAE">int [] arr = new int [] {1, 2, 3, 4, 5};</li>
<li data-hveid="CC4QAQ" data-ved="2ahUKEwj3yafxkpD0AhWQP3AKHZFLDe0Quk56BAguEAE">System. out. println(&#8220;Elements of given array: &#8220;);</li>
<li data-hveid="CC4QAQ" data-ved="2ahUKEwj3yafxkpD0AhWQP3AKHZFLDe0Quk56BAguEAE">//Loop through the array by incrementing value of i.</li>
<li data-hveid="CC4QAQ" data-ved="2ahUKEwj3yafxkpD0AhWQP3AKHZFLDe0Quk56BAguEAE">for (int i = 0; i &lt; arr. length; i++) {</li>
<li data-hveid="CC4QAQ" data-ved="2ahUKEwj3yafxkpD0AhWQP3AKHZFLDe0Quk56BAguEAE">System. out. print(arr[i] + &#8221; &#8220;);</li>
</ol>
<h2>How do I create an array in bash?</h2>
<ol>
<li>To declare your array, follow these steps:<br />
Give your array a name.</li>
<li>Follow that variable name with an equal sign. The equal sign should not have any spaces around it.</li>
<li>Enclose the array in parentheses (not brackets like in JavaScript)</li>
<li>Type your strings using quotes, but with no commas between them.</li>
</ol>
<h2>How do you create an array in bash?</h2>
<p>Define An Array in Bash</p>
<p>You have two ways to create a new array in bash script. The first one is to use declare command to define an Array. This command will define an associative array named test_array. In another way, you can simply create Array by assigning elements.</p>
<h2>How does printf work in bash?</h2>
<p>What Is the Bash printf Function? As the name suggests, printf is a function that prints formatted strings of text. That means you can write a string structure (the format) and later fill it in with values (the arguments). If you&#8217;re familiar with the C/C++ programming languages, you might already know how printf works.</p>
<h2>How do you pass an array to a function in bash?</h2>
<p>10 Answers</p>
<ol>
<li>Expanding an array without an index only gives the first element, use copyFiles &#8220;${array[@]}&#8221; instead of copyFiles $array.</li>
<li>Use a she-bang #!/bin/bash.</li>
<li>Use the correct function syntax. Valid variants are function copyFiles {… &#8230;</li>
<li>Use the right syntax to get the array parameter arr=(&#8220;$@&#8221;) instead of arr=&#8221;$1&#8243;</li>
</ol>
<h2>How do you create an empty array in bash?</h2>
<p>To declare an empty array, the simplest method is given here. It contains the keyword “declare” following a constant “-a” and the array name. The name of the array is assigned with empty parenthesis.</p>
<h2>How do I get the size of an array in bash?</h2>
<p>To get the length of an array, we can use the {#array[@]} syntax in bash. The # in the above syntax calculates the array size, without hash # it just returns all elements in the array.</p>
<p><a class="a2a_button_mastodon" href="https://www.addtoany.com/add_to/mastodon?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-how-to-print-array%2F&amp;linkname=Bash%20How%20to%20Print%20Array" title="Mastodon" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-how-to-print-array%2F&amp;linkname=Bash%20How%20to%20Print%20Array" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-how-to-print-array%2F&amp;linkname=Bash%20How%20to%20Print%20Array" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_reddit" href="https://www.addtoany.com/add_to/reddit?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-how-to-print-array%2F&amp;linkname=Bash%20How%20to%20Print%20Array" title="Reddit" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_x" href="https://www.addtoany.com/add_to/x?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-how-to-print-array%2F&amp;linkname=Bash%20How%20to%20Print%20Array" title="X" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-how-to-print-array%2F&amp;linkname=Bash%20How%20to%20Print%20Array" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_copy_link" href="https://www.addtoany.com/add_to/copy_link?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-how-to-print-array%2F&amp;linkname=Bash%20How%20to%20Print%20Array" title="Copy Link" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Flinuxcent.com%2Fbash-how-to-print-array%2F&#038;title=Bash%20How%20to%20Print%20Array" data-a2a-url="https://linuxcent.com/bash-how-to-print-array/" data-a2a-title="Bash How to Print Array"></a></p><p>The post <a href="https://linuxcent.com/bash-how-to-print-array/">Bash How to Print Array</a> appeared first on <a href="https://linuxcent.com">Linuxcent</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://linuxcent.com/bash-how-to-print-array/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1011</post-id>	</item>
		<item>
		<title>Best Linux Text Editors</title>
		<link>https://linuxcent.com/best-linux-text-editors/</link>
					<comments>https://linuxcent.com/best-linux-text-editors/#respond</comments>
		
		<dc:creator><![CDATA[Raju]]></dc:creator>
		<pubDate>Fri, 12 Nov 2021 05:52:23 +0000</pubDate>
				<category><![CDATA[Linux Tutorials]]></category>
		<guid isPermaLink="false">https://linuxcent.com/?p=1157</guid>

					<description><![CDATA[<p><span class="span-reading-time rt-reading-time" style="display: block;"><span class="rt-label rt-prefix">Reading Time: </span> <span class="rt-time"> 3</span> <span class="rt-label rt-postfix">minutes</span></span>Best Linux Text Editors You can choose between several text editors in Linux. Each editor has advantages and advantages. 1. Vi/Vim Vi is a powerful and the most popular command-line-based editor. Commonly used for writing code and editing configuration files. First of all, the advantage is availability. Vi is always installed on any distribution. The ... <a title="Best Linux Text Editors" class="read-more" href="https://linuxcent.com/best-linux-text-editors/" aria-label="Read more about Best Linux Text Editors">Read more</a></p>
<p>The post <a href="https://linuxcent.com/best-linux-text-editors/">Best Linux Text Editors</a> appeared first on <a href="https://linuxcent.com">Linuxcent</a>.</p>
]]></description>
										<content:encoded><![CDATA[<span class="span-reading-time rt-reading-time" style="display: block;"><span class="rt-label rt-prefix">Reading Time: </span> <span class="rt-time"> 3</span> <span class="rt-label rt-postfix">minutes</span></span><h2>Best Linux Text Editors</h2>
<p>You can choose between several text editors in Linux. Each editor has advantages and advantages.</p>
<p><strong>1. Vi/Vim</strong><br />
Vi is a powerful and the most popular command-line-based editor. Commonly used for writing code and editing configuration files. First of all, the advantage is availability. Vi is always installed on any distribution. The second advantage is the consumption of system resources. One of the cons is non-intuitive, but short commands.</p>
<p>Vi has 3 modes: command, input, and last line mode. Command mode is the default.</p>
<p><strong>2. Nano</strong><br />
Nano is WYSIWYG (what you see is what you get) editor and is installed by default in Ubuntu and many other Linux distributions. Action/commands are done in a CTRL and Key manner, for example, CTRL + X save a file. Features: Autoconf support, case-sensitive search function, auto-indent ability, regular expression search and replace.</p>
<p><strong>3. Gedit</strong><br />
Gedit is the default text editor for the GNOME desktop environment. Gedit&#8217;s aim is simple and easy to use for beginner Linux users. Useful features are syntax highlighting, clipboard support, brackets matching, search and replace with support of regular expressions</p>
<p><strong>4. GNU Emacs</strong><br />
Emacs is the extensible self-documenting editor. It provides an interpreter for Emacs Lisp. Main function: text editing including a project planner, mail and newsreader, debugger interface, calendar.</p>
<p><strong>5. Leaf Pad</strong><br />
GTK+ based editor is popular among new Linux users because it is easy to use. It supports the codeset option, auto codeset detection, and Drag &amp; Drop function. It does not provide syntax coloring.</p>
<h2>Which text editor is best Linux?<br />
<b></b></h2>
<p><b>12 Best Text Editors For Linux Distros</b></p>
<ul>
<li>Sublime Text. Sublime Text is a feature-packed text editor built for u201ccode, markup, and prose.u201d It natively supports tons of programming languages and markup languages. &#8230;</li>
<li>Atom. &#8230;</li>
<li>Vim. &#8230;</li>
<li>Gedit. &#8230;</li>
<li>GNU Emacs. &#8230;</li>
<li>Visual Studio Code. &#8230;</li>
<li>nano. &#8230;</li>
<li>KWrite.</li>
</ul>
<h2>What are the most common text editors in Linux?</h2>
<p><b>Top 10 Text Editors for Linux Desktop</b></p>
<ul>
<li>VIM. If you are bored of using the default u201cviu201d editor in linux and want to edit your text in an advanced text editor that is packed with powerful performance and lots of options, then vim is your best choice. &#8230;</li>
<li>Geany. &#8230;</li>
<li>Sublime Text Editor. &#8230;</li>
<li>Brackets. &#8230;</li>
<li>Gedit. &#8230;</li>
<li>Kate. &#8230;</li>
<li>Eclipse. &#8230;</li>
<li>Kwrite.</li>
</ul>
<h2>What text editor comes with Linux?</h2>
<p>Almost all Linux distributions, even older versions, come with <b>the Vim editor installed.</b></p>
<h2>What is the best text editor 2020?</h2>
<p><b>10 best code editors for 2020</b></p>
<ul>
<li>Visual studio code. Visual studio code commonly referred to as VS code, is one of the best code editors in the market. &#8230;</li>
<li>Sublime text. If you are looking for a very lightweight yet robust code editor, the sublime text is your option. &#8230;</li>
<li>Atom Editor. &#8230;</li>
<li>Notepad++ &#8230;</li>
<li>Bluefish. &#8230;</li>
<li>Brackets. &#8230;</li>
<li>Phpstorm. &#8230;</li>
<li>GNU Emacs.</li>
</ul>
<h2>What text editor should I use for Linux?</h2>
<p>There are two command-line text editors in Linuxxae: <b>vim and nano. You can use one of these two available options should you ever need to write a script, edit a configuration file, create a virtual host, or jot down a quick note for yourself. These are but a few examples of what you can do with these tools.</b></p>
<h2>What is the best text editor to use?</h2>
<p><b>Best text editors in 2021: for Linux, Mac, and Windows coders and programmers</b></p>
<ul>
<li>Sublime Text.</li>
<li>Atom.</li>
<li>Visual Studio Code.</li>
<li>Espresso.</li>
<li>Brackets.</li>
<li>Notepad++</li>
<li>Vim.</li>
<li>BBedit.</li>
</ul>
<h2>What is the best IDE for Linux in 2020?</h2>
<p><b>10 Best IDEs For Linux In 2020!</b></p>
<ul>
<li>NetBeans.</li>
<li>zend Studio.</li>
<li>Komodo IDE.</li>
<li>Anjuta.</li>
<li>MonoDevelop.</li>
<li>CodeLite.</li>
<li>KDevelop.</li>
<li>Geany.</li>
</ul>
<h2>Is VI the best text editor?</h2>
<p><b>Vim is the best text editor/IDE out there. It is the x26quot;editor of choice of old-time Unix hackersx26quot;. Vim is one of the most popular programming editors out there. Itx26#39;s loved by geeks for its speed, extensive feature set, and flexibility.</b></p>
<h2>Which text editor is used in Linux?</h2>
<p>A Linux system supports multiple text editors. There are two types of text editors in Linux, which are given below: Command-line text editors such as <b>Vi, nano, pico, and more. GUI text editors such as gedit (for Gnome), Kwrite, and more.</b></p>
<h2>Which is the most common text editor?</h2>
<p><b>The 15 Most Popular Text Editors for Developers</b></p>
<ul>
<li>UltraEdit.</li>
<li>Dreamweaver.</li>
<li>Komodo Edit / Komodo IDE.</li>
<li>Aptana.</li>
<li>PSPad.</li>
<li>Vim.</li>
<li>TextMate.</li>
<li>Notepad++</li>
</ul>
<p><a class="a2a_button_mastodon" href="https://www.addtoany.com/add_to/mastodon?linkurl=https%3A%2F%2Flinuxcent.com%2Fbest-linux-text-editors%2F&amp;linkname=Best%20Linux%20Text%20Editors" title="Mastodon" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Flinuxcent.com%2Fbest-linux-text-editors%2F&amp;linkname=Best%20Linux%20Text%20Editors" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Flinuxcent.com%2Fbest-linux-text-editors%2F&amp;linkname=Best%20Linux%20Text%20Editors" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_reddit" href="https://www.addtoany.com/add_to/reddit?linkurl=https%3A%2F%2Flinuxcent.com%2Fbest-linux-text-editors%2F&amp;linkname=Best%20Linux%20Text%20Editors" title="Reddit" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_x" href="https://www.addtoany.com/add_to/x?linkurl=https%3A%2F%2Flinuxcent.com%2Fbest-linux-text-editors%2F&amp;linkname=Best%20Linux%20Text%20Editors" title="X" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Flinuxcent.com%2Fbest-linux-text-editors%2F&amp;linkname=Best%20Linux%20Text%20Editors" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_copy_link" href="https://www.addtoany.com/add_to/copy_link?linkurl=https%3A%2F%2Flinuxcent.com%2Fbest-linux-text-editors%2F&amp;linkname=Best%20Linux%20Text%20Editors" title="Copy Link" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Flinuxcent.com%2Fbest-linux-text-editors%2F&#038;title=Best%20Linux%20Text%20Editors" data-a2a-url="https://linuxcent.com/best-linux-text-editors/" data-a2a-title="Best Linux Text Editors"></a></p><p>The post <a href="https://linuxcent.com/best-linux-text-editors/">Best Linux Text Editors</a> appeared first on <a href="https://linuxcent.com">Linuxcent</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://linuxcent.com/best-linux-text-editors/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1157</post-id>	</item>
		<item>
		<title>Bash Vs KSH</title>
		<link>https://linuxcent.com/bash-vs-ksh-3/</link>
					<comments>https://linuxcent.com/bash-vs-ksh-3/#respond</comments>
		
		<dc:creator><![CDATA[Raju]]></dc:creator>
		<pubDate>Fri, 12 Nov 2021 03:52:23 +0000</pubDate>
				<category><![CDATA[Bash]]></category>
		<guid isPermaLink="false">https://linuxcent.com/?p=1136</guid>

					<description><![CDATA[<p><span class="span-reading-time rt-reading-time" style="display: block;"><span class="rt-label rt-prefix">Reading Time: </span> <span class="rt-time"> 3</span> <span class="rt-label rt-postfix">minutes</span></span>Bash Vs KSH Linux and Unix have various shells. Two kinds of these numerous shells are KSH and BASH. KSH (The Korn Shell) was developed many years before the BASH. Ksh has associative arrays and handles loop syntax better than bash. Also ksh&#8217;s command print is better than bash&#8217;s echo command. In other way, ksh ... <a title="Bash Vs KSH" class="read-more" href="https://linuxcent.com/bash-vs-ksh-3/" aria-label="Read more about Bash Vs KSH">Read more</a></p>
<p>The post <a href="https://linuxcent.com/bash-vs-ksh-3/">Bash Vs KSH</a> appeared first on <a href="https://linuxcent.com">Linuxcent</a>.</p>
]]></description>
										<content:encoded><![CDATA[<span class="span-reading-time rt-reading-time" style="display: block;"><span class="rt-label rt-prefix">Reading Time: </span> <span class="rt-time"> 3</span> <span class="rt-label rt-postfix">minutes</span></span><h2>Bash Vs KSH</h2>
<p>Linux and Unix have various shells. Two kinds of these numerous shells are KSH and BASH.</p>
<p>KSH (The Korn Shell) was developed many years before the BASH. Ksh has associative arrays and handles loop syntax better than bash. Also ksh&#8217;s command print is better than bash&#8217;s echo command. In other way, ksh does not support history completion, process substitution and rebindable command-line editing.</p>
<p>Bash has more added extension than ksh. Bash has tab completion and easier method to set a prompt in order to display current directory.</p>
<p>Compared to ksh, bash is newer and more popular.</p>
<p>Example of difference ksh and bash in condition test. First bash:</p>
<pre>if [ $i -eq 3 ]</pre>
<p>and condition test in ksh:</p>
<pre>if (($i==3))</pre>
<p>Bash can handle exit codes from pipes in a cleaner way. Bash and KSH are both Bourne=compatible shells, they share common functions and features and can be interchangeable to use.</p>
<h2>Is ksh same as bash?</h2>
<p>KSH and Bash shells are also products of combinations of other shells&#8217; features. Bash and KSH are both Bourne-compatible shells. Since they share common features, they can be used interchangeably.</p>
<h2>Is ksh faster than bash?</h2>
<p>The ksh and zsh seems about seven times faster than bash . The ksh excelled in 17 tests and the zsh in six tests.</p>
<h2>What is the difference between ksh CSH and bash?</h2>
<p>CSH is C shell while BASH is Bourne Again shell. 2. C shell and BASH are both Unix and Linux shells. While CSH has its own features, BASH has incorporated the features of other shells including that of CSH with its own features which provides it with more features and makes it the most widely used command processor.</p>
<h2>Is ksh a Linux shell?</h2>
<p>Ksh is an acronym for KornSHell. It is a shell and programming language that executes commands read from a terminal or a file. It was developed by David Korn at AT&amp;T Bell Laboratories in the early 1980s. It is backwards-compatible with the Bourne shell and includes many features of the C shell.</p>
<h2>Why is ksh used?</h2>
<p>ksh is a command and programming language that executes commands read from a terminal or a file. rksh is a restricted version of the command interpreter ksh; it is used to set up login names and execution environments whose capabilities are more controlled than those of the standard shell.</p>
<h2>How do I run a ksh script in Bash?</h2>
<p>How do I run . sh file shell script in Linux?</p>
<ul>
<li>Open the Terminal application on Linux or Unix.</li>
<li>Create a new script file with .sh extension using a text editor.</li>
<li>Write the script file using nano script-name-here.sh.</li>
<li>Set execute permission on your script using chmod command : chmod +x script-name-here.sh.<br />
To run your script :</li>
</ul>
<h2>Is dash faster than Bash?</h2>
<p>If you need speed, go definitely with dash, it is much faster than any other shell and about 4x faster than bash.</p>
<h2>What is faster than Bash?</h2>
<p>Perl is absurdly faster than Bash. And, for text manipulation, you can actually achieve better performances with Perl than with C, unless you take time to write complex algorithms.</p>
<h2>How much faster is dash than Bash?</h2>
<p>Dash is not Bash compatible, but Bash tries to be mostly compatible with POSIX, and thus Dash. Dash shines in: Speed of execution. Roughly 4x times faster than Bash and others.</p>
<h2>What is difference between sh and ksh in Unix?</h2>
<p>sh is the original Bourne shell. On many non-Linux systems, this is an old shell without the POSIX features. Thus bash and ksh (or even csh and tcsh) are better choices than sh. &#8230; Public domain ksh (pdksh) is Bourne-compatible and mostly POSIX-compatible.</p>
<h2>Is zsh better than Bash?</h2>
<p>It has many features like Bash but some features of Zsh make it better and improved than Bash, such as spelling correction, cd automation, better theme, and plugin support, etc. Linux users don&#8217;t need to install the Bash shell because it is installed by default with Linux distribution.</p>
<p><a class="a2a_button_mastodon" href="https://www.addtoany.com/add_to/mastodon?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-vs-ksh-3%2F&amp;linkname=Bash%20Vs%20KSH" title="Mastodon" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-vs-ksh-3%2F&amp;linkname=Bash%20Vs%20KSH" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-vs-ksh-3%2F&amp;linkname=Bash%20Vs%20KSH" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_reddit" href="https://www.addtoany.com/add_to/reddit?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-vs-ksh-3%2F&amp;linkname=Bash%20Vs%20KSH" title="Reddit" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_x" href="https://www.addtoany.com/add_to/x?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-vs-ksh-3%2F&amp;linkname=Bash%20Vs%20KSH" title="X" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-vs-ksh-3%2F&amp;linkname=Bash%20Vs%20KSH" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_copy_link" href="https://www.addtoany.com/add_to/copy_link?linkurl=https%3A%2F%2Flinuxcent.com%2Fbash-vs-ksh-3%2F&amp;linkname=Bash%20Vs%20KSH" title="Copy Link" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Flinuxcent.com%2Fbash-vs-ksh-3%2F&#038;title=Bash%20Vs%20KSH" data-a2a-url="https://linuxcent.com/bash-vs-ksh-3/" data-a2a-title="Bash Vs KSH"></a></p><p>The post <a href="https://linuxcent.com/bash-vs-ksh-3/">Bash Vs KSH</a> appeared first on <a href="https://linuxcent.com">Linuxcent</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://linuxcent.com/bash-vs-ksh-3/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1136</post-id>	</item>
		<item>
		<title>How to manage LVM in Linux</title>
		<link>https://linuxcent.com/how-to-manage-lvm-in-linux/</link>
					<comments>https://linuxcent.com/how-to-manage-lvm-in-linux/#respond</comments>
		
		<dc:creator><![CDATA[Raju]]></dc:creator>
		<pubDate>Wed, 08 Sep 2021 10:52:24 +0000</pubDate>
				<category><![CDATA[Linux Tutorials]]></category>
		<guid isPermaLink="false">https://linuxcent.com/?p=1161</guid>

					<description><![CDATA[<p><span class="span-reading-time rt-reading-time" style="display: block;"><span class="rt-label rt-prefix">Reading Time: </span> <span class="rt-time"> 2</span> <span class="rt-label rt-postfix">minutes</span></span>How to manage LVM in Linux Creating Dynamic Disc We are going to create three discs on a USB drive, each disc will have 512 MB. First, verify if we have connected the USB drive as /dev/sdc/: # fdisk -l If we have a USB drive connected as /dev/sdc: # fdisk /dev/sdc Command d can ... <a title="How to manage LVM in Linux" class="read-more" href="https://linuxcent.com/how-to-manage-lvm-in-linux/" aria-label="Read more about How to manage LVM in Linux">Read more</a></p>
<p>The post <a href="https://linuxcent.com/how-to-manage-lvm-in-linux/">How to manage LVM in Linux</a> appeared first on <a href="https://linuxcent.com">Linuxcent</a>.</p>
]]></description>
										<content:encoded><![CDATA[<span class="span-reading-time rt-reading-time" style="display: block;"><span class="rt-label rt-prefix">Reading Time: </span> <span class="rt-time"> 2</span> <span class="rt-label rt-postfix">minutes</span></span><h2>How to manage LVM in Linux</h2>
<h3>Creating Dynamic Disc</h3>
<p>We are going to create three discs on a USB drive, each disc will have 512 MB. First, verify if we have connected the USB drive as /dev/sdc/:</p>
<pre># fdisk -l</pre>
<p>If we have a USB drive connected as /dev/sdc:</p>
<pre># fdisk /dev/sdc</pre>
<p>Command d can remove existing logical volumes on the USB drive.</p>
<p>Enter commands n, p, 1-3, +512M to create 3 logical volumes. For example, we create the first volume /dev/sdc1:</p>
<pre>Command (m for help): p
Command (m for help): n
Partition number (1-3): 1
First sector (34-41943006, default 41940992): 34
Last sector, +sectors or +size{K,M,G,T,P}: +512M
Command (m for help): p</pre>
<p>Command w saves new partition table and changes can not be undone.</p>
<p>Reload partition table:</p>
<pre># partprobe</pre>
<p>Format created discs:</p>
<pre># pvcreate /dev/sdc1
# pvcreate /dev/sdc2
# pvcreate /dev/sdc3</pre>
<p>Verify:</p>
<pre># pvdisplay</pre>
<p>Create volume group DATA:</p>
<pre># vgcreate DATA /dev/sdc1 /dev/sdc2 /dev/sdc3</pre>
<p>To be sure verify group capacity:</p>
<pre># vgdisplay</pre>
<p>Create physical volume from 100% of physical volume capacity.</p>
<pre># lvcreate -l +100%FREE -n new_volume DATA</pre>
<p>Format the new volume:</p>
<pre># mkfs -t ext3 /dev/DATA/new_volume</pre>
<p>Create a directory for mount:</p>
<pre># mkdir /mnt/dynamic</pre>
<p>Mount the new volume:</p>
<pre># mount /dev/DATA/new_volume /mnt/dynamic</pre>
<p>Mount verification:</p>
<pre># df -hT</pre>
<p>Mount verification using a graphical interface:</p>
<pre># system-config-lvm</pre>
<h3>Dynamic Resize Dynamic Disk</h3>
<p>Create primary logical partition /dev/sdc4, that use the rest of the USB drive:</p>
<pre># fdisk /dev/sdc
Command (m for help):n
Command (m for help):4
Command (m for help):p
&lt;enter&gt;
&lt;enter&gt;</pre>
<p>Command w saves a new partition table and it can not be undone.</p>
<p>Verify partition table:</p>
<pre># partprobe</pre>
<p>Add new disk to physical LVL partition:</p>
<pre># pvcreate /dev/sdc4</pre>
<p>Verify:</p>
<pre># pvdisplay</pre>
<p>Extend volume group:</p>
<pre># vgextend DATA /dev/sdc4</pre>
<p>Verify extended volume group:</p>
<pre># vgdisplay</pre>
<p>Extend logical volume with 1 GB:</p>
<pre># lvextend -L+1G /dev/DATA/new_volume</pre>
<p>Resize size of disk:</p>
<pre># resize2fs /dev/DATA/new_volume</pre>
<p>Remount:</p>
<pre># mount -o remount /dev/DATA/new_volume</pre>
<p>Verify:</p>
<pre># df -hT</pre>
<h3>Removing Dynamic Disc</h3>
<p>Unmount logical volume:</p>
<pre># umount /dev/DATA/new_volume</pre>
<p>Remove logical volume:</p>
<pre># lvremove /dev/DATA/new_volume</pre>
<p>Remove volume group:</p>
<pre># vgremove /dev/DATA</pre>
<p>Remove physical volumes:</p>
<pre># pvremove /dev/sdc1
# pvremove /dev/sdc2
# pvremove /dev/sdc3
# pvremove /dev/sdc4</pre>
<p>Verification using a graphical interface:</p>
<pre># system-config-lvm</pre>
<p><a class="a2a_button_mastodon" href="https://www.addtoany.com/add_to/mastodon?linkurl=https%3A%2F%2Flinuxcent.com%2Fhow-to-manage-lvm-in-linux%2F&amp;linkname=How%20to%20manage%20LVM%20in%20Linux" title="Mastodon" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Flinuxcent.com%2Fhow-to-manage-lvm-in-linux%2F&amp;linkname=How%20to%20manage%20LVM%20in%20Linux" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Flinuxcent.com%2Fhow-to-manage-lvm-in-linux%2F&amp;linkname=How%20to%20manage%20LVM%20in%20Linux" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_reddit" href="https://www.addtoany.com/add_to/reddit?linkurl=https%3A%2F%2Flinuxcent.com%2Fhow-to-manage-lvm-in-linux%2F&amp;linkname=How%20to%20manage%20LVM%20in%20Linux" title="Reddit" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_x" href="https://www.addtoany.com/add_to/x?linkurl=https%3A%2F%2Flinuxcent.com%2Fhow-to-manage-lvm-in-linux%2F&amp;linkname=How%20to%20manage%20LVM%20in%20Linux" title="X" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Flinuxcent.com%2Fhow-to-manage-lvm-in-linux%2F&amp;linkname=How%20to%20manage%20LVM%20in%20Linux" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_copy_link" href="https://www.addtoany.com/add_to/copy_link?linkurl=https%3A%2F%2Flinuxcent.com%2Fhow-to-manage-lvm-in-linux%2F&amp;linkname=How%20to%20manage%20LVM%20in%20Linux" title="Copy Link" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Flinuxcent.com%2Fhow-to-manage-lvm-in-linux%2F&#038;title=How%20to%20manage%20LVM%20in%20Linux" data-a2a-url="https://linuxcent.com/how-to-manage-lvm-in-linux/" data-a2a-title="How to manage LVM in Linux"></a></p><p>The post <a href="https://linuxcent.com/how-to-manage-lvm-in-linux/">How to manage LVM in Linux</a> appeared first on <a href="https://linuxcent.com">Linuxcent</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://linuxcent.com/how-to-manage-lvm-in-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1161</post-id>	</item>
		<item>
		<title>JOE Tutorial for Linux</title>
		<link>https://linuxcent.com/joe-tutorial-for-linux/</link>
					<comments>https://linuxcent.com/joe-tutorial-for-linux/#respond</comments>
		
		<dc:creator><![CDATA[Raju]]></dc:creator>
		<pubDate>Wed, 08 Sep 2021 10:52:23 +0000</pubDate>
				<category><![CDATA[Linux Tutorials]]></category>
		<guid isPermaLink="false">https://linuxcent.com/?p=1126</guid>

					<description><![CDATA[<p><span class="span-reading-time rt-reading-time" style="display: block;"><span class="rt-label rt-prefix">Reading Time: </span> <span class="rt-time"> &#60; 1</span> <span class="rt-label rt-postfix">minute</span></span>JOE Tutorial for Linux Start joe: joe ./textFile.txt Show help: Ctrl + K + H (to hide help, enter this command again) Save file Ctrl + K + D Save and exit: Ctrl + K + X Exit without saving: Ctrl + K + Q Go to previous/next screen: Ctrl + U/Ctrl + V Move ... <a title="JOE Tutorial for Linux" class="read-more" href="https://linuxcent.com/joe-tutorial-for-linux/" aria-label="Read more about JOE Tutorial for Linux">Read more</a></p>
<p>The post <a href="https://linuxcent.com/joe-tutorial-for-linux/">JOE Tutorial for Linux</a> appeared first on <a href="https://linuxcent.com">Linuxcent</a>.</p>
]]></description>
										<content:encoded><![CDATA[<span class="span-reading-time rt-reading-time" style="display: block;"><span class="rt-label rt-prefix">Reading Time: </span> <span class="rt-time"> &lt; 1</span> <span class="rt-label rt-postfix">minute</span></span><h2>JOE Tutorial for Linux</h2>
<p>Start joe:</p>
<pre>joe ./textFile.txt</pre>
<p>Show help:</p>
<pre>Ctrl + K + H (to hide help, enter this command again)</pre>
<p>Save file</p>
<pre>Ctrl + K + D</pre>
<p>Save and exit:</p>
<pre>Ctrl + K + X</pre>
<p>Exit without saving:</p>
<pre>Ctrl + K + Q</pre>
<p>Go to previous/next screen:</p>
<pre>Ctrl + U/Ctrl + V</pre>
<p>Move cursor to the start/end of file file:</p>
<pre>Ctrl + K + U/Ctrl + K + V</pre>
<p>UnDo recent change:</p>
<pre>Ctrl + Shift + _</pre>
<p>ReDo undone change:</p>
<pre>Ctrl + Shift + ^</pre>
<p>Insert or overwrite:</p>
<pre>Ctrl + T</pre>
<p>Selecting text:</p>
<pre>Ctrl + K + B (block begin)
Ctrl + K + K (block end)</pre>
<p>When you have block selected, to move block using:</p>
<pre>Ctrl + K + M</pre>
<p>Delete block:</p>
<pre>Ctrl + K + Y</pre>
<p>Copy block:</p>
<pre>Ctrl + K + C</pre>
<p>Search in the file:</p>
<pre>Ctrl + K + F</pre>
<p>Then choose between ignore (I), replace (R) options. To navigate to next result use:</p>
<pre>Ctrl + L</pre>
<p>If you want to change joe&#8217;s default setting use:</p>
<pre>Ctrl + T</pre>
<p>You can turn on/off auto-indent, word wrap, line numbers, highlighting and set tab width, left margin, etc.</p>
<p><a class="a2a_button_mastodon" href="https://www.addtoany.com/add_to/mastodon?linkurl=https%3A%2F%2Flinuxcent.com%2Fjoe-tutorial-for-linux%2F&amp;linkname=JOE%20Tutorial%20for%20Linux" title="Mastodon" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Flinuxcent.com%2Fjoe-tutorial-for-linux%2F&amp;linkname=JOE%20Tutorial%20for%20Linux" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Flinuxcent.com%2Fjoe-tutorial-for-linux%2F&amp;linkname=JOE%20Tutorial%20for%20Linux" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_reddit" href="https://www.addtoany.com/add_to/reddit?linkurl=https%3A%2F%2Flinuxcent.com%2Fjoe-tutorial-for-linux%2F&amp;linkname=JOE%20Tutorial%20for%20Linux" title="Reddit" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_x" href="https://www.addtoany.com/add_to/x?linkurl=https%3A%2F%2Flinuxcent.com%2Fjoe-tutorial-for-linux%2F&amp;linkname=JOE%20Tutorial%20for%20Linux" title="X" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Flinuxcent.com%2Fjoe-tutorial-for-linux%2F&amp;linkname=JOE%20Tutorial%20for%20Linux" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_copy_link" href="https://www.addtoany.com/add_to/copy_link?linkurl=https%3A%2F%2Flinuxcent.com%2Fjoe-tutorial-for-linux%2F&amp;linkname=JOE%20Tutorial%20for%20Linux" title="Copy Link" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Flinuxcent.com%2Fjoe-tutorial-for-linux%2F&#038;title=JOE%20Tutorial%20for%20Linux" data-a2a-url="https://linuxcent.com/joe-tutorial-for-linux/" data-a2a-title="JOE Tutorial for Linux"></a></p><p>The post <a href="https://linuxcent.com/joe-tutorial-for-linux/">JOE Tutorial for Linux</a> appeared first on <a href="https://linuxcent.com">Linuxcent</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://linuxcent.com/joe-tutorial-for-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1126</post-id>	</item>
		<item>
		<title>Linux How to Change Password</title>
		<link>https://linuxcent.com/linux-how-to-change-password/</link>
					<comments>https://linuxcent.com/linux-how-to-change-password/#respond</comments>
		
		<dc:creator><![CDATA[Raju]]></dc:creator>
		<pubDate>Wed, 08 Sep 2021 10:52:23 +0000</pubDate>
				<category><![CDATA[Linux Tutorials]]></category>
		<guid isPermaLink="false">https://linuxcent.com/?p=1128</guid>

					<description><![CDATA[<p><span class="span-reading-time rt-reading-time" style="display: block;"><span class="rt-label rt-prefix">Reading Time: </span> <span class="rt-time"> &#60; 1</span> <span class="rt-label rt-postfix">minute</span></span>Linux How to Change Password If you want to change password of user that are currently logged in, just type: passwd Input old password, then type new password 2 times. Did you run the passwd command as root? There is a difference between whether you change the password as an root or as a standard ... <a title="Linux How to Change Password" class="read-more" href="https://linuxcent.com/linux-how-to-change-password/" aria-label="Read more about Linux How to Change Password">Read more</a></p>
<p>The post <a href="https://linuxcent.com/linux-how-to-change-password/">Linux How to Change Password</a> appeared first on <a href="https://linuxcent.com">Linuxcent</a>.</p>
]]></description>
										<content:encoded><![CDATA[<span class="span-reading-time rt-reading-time" style="display: block;"><span class="rt-label rt-prefix">Reading Time: </span> <span class="rt-time"> &lt; 1</span> <span class="rt-label rt-postfix">minute</span></span><h2>Linux How to Change Password</h2>
<p>If you want to change password of user that are currently logged in, just type:</p>
<pre>passwd</pre>
<p>Input old password, then type new password 2 times.</p>
<p>Did you run the passwd command as root? There is a difference between whether you change the password as an root or as a standard user. While the root is called upon to enter a password, the password policy more fully. But if he fails, the password is changed, even though the system grumble. Current user must comply with password policy.</p>
<p>Let&#8217;s assume, that you are user bob. If you would like to change bob&#8217;s password, log as bob and type:</p>
<pre>passwd</pre>
<p>If you are root, and if you want to change bob&#8217;s password, type:</p>
<pre>passwd bob</pre>
<p>Please, always try to check, if you set good new password. There is a possibility, that you misspell the password, so try to log in to second console (or putty session) immediately after login.</p>
<p>You can also set the following options:</p>
<table>
<tbody>
<tr>
<td style="text-align: center;" width="56"><strong>Option</strong></td>
<td style="text-align: center;" width="190"><strong>Property</strong></td>
</tr>
<tr>
<td width="56">-d</td>
<td width="190">Delete password for an account. It will set a passwordless account.</td>
</tr>
<tr>
<td width="56">-e</td>
<td width="190">Expire. The user will be forced to change the password in the next login.</td>
</tr>
<tr>
<td width="56">-n</td>
<td width="190">Minimum password lifetime.</td>
</tr>
<tr>
<td width="56">-x</td>
<td width="190">Maximum password lifetime.</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p><a class="a2a_button_mastodon" href="https://www.addtoany.com/add_to/mastodon?linkurl=https%3A%2F%2Flinuxcent.com%2Flinux-how-to-change-password%2F&amp;linkname=Linux%20How%20to%20Change%20Password" title="Mastodon" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Flinuxcent.com%2Flinux-how-to-change-password%2F&amp;linkname=Linux%20How%20to%20Change%20Password" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Flinuxcent.com%2Flinux-how-to-change-password%2F&amp;linkname=Linux%20How%20to%20Change%20Password" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_reddit" href="https://www.addtoany.com/add_to/reddit?linkurl=https%3A%2F%2Flinuxcent.com%2Flinux-how-to-change-password%2F&amp;linkname=Linux%20How%20to%20Change%20Password" title="Reddit" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_x" href="https://www.addtoany.com/add_to/x?linkurl=https%3A%2F%2Flinuxcent.com%2Flinux-how-to-change-password%2F&amp;linkname=Linux%20How%20to%20Change%20Password" title="X" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Flinuxcent.com%2Flinux-how-to-change-password%2F&amp;linkname=Linux%20How%20to%20Change%20Password" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_copy_link" href="https://www.addtoany.com/add_to/copy_link?linkurl=https%3A%2F%2Flinuxcent.com%2Flinux-how-to-change-password%2F&amp;linkname=Linux%20How%20to%20Change%20Password" title="Copy Link" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Flinuxcent.com%2Flinux-how-to-change-password%2F&#038;title=Linux%20How%20to%20Change%20Password" data-a2a-url="https://linuxcent.com/linux-how-to-change-password/" data-a2a-title="Linux How to Change Password"></a></p><p>The post <a href="https://linuxcent.com/linux-how-to-change-password/">Linux How to Change Password</a> appeared first on <a href="https://linuxcent.com">Linuxcent</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://linuxcent.com/linux-how-to-change-password/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1128</post-id>	</item>
		<item>
		<title>Linux Find String in Folder</title>
		<link>https://linuxcent.com/linux-find-string-in-folder/</link>
					<comments>https://linuxcent.com/linux-find-string-in-folder/#respond</comments>
		
		<dc:creator><![CDATA[Raju]]></dc:creator>
		<pubDate>Wed, 08 Sep 2021 10:52:23 +0000</pubDate>
				<category><![CDATA[Linux Tutorials]]></category>
		<guid isPermaLink="false">https://linuxcent.com/?p=1120</guid>

					<description><![CDATA[<p><span class="span-reading-time rt-reading-time" style="display: block;"><span class="rt-label rt-prefix">Reading Time: </span> <span class="rt-time"> &#60; 1</span> <span class="rt-label rt-postfix">minute</span></span>Linux Find String in Folder In our examples, we assume, that we want to find the name of the network card &#8220;eno16777728&#8221; in /etc folder recursively. This example search &#8220;eno16777728&#8221; in /etc folder (-r means recursive, -n means print line number): grep -nr "eno16777728" /etc In next example, we would like to add ignore case ... <a title="Linux Find String in Folder" class="read-more" href="https://linuxcent.com/linux-find-string-in-folder/" aria-label="Read more about Linux Find String in Folder">Read more</a></p>
<p>The post <a href="https://linuxcent.com/linux-find-string-in-folder/">Linux Find String in Folder</a> appeared first on <a href="https://linuxcent.com">Linuxcent</a>.</p>
]]></description>
										<content:encoded><![CDATA[<span class="span-reading-time rt-reading-time" style="display: block;"><span class="rt-label rt-prefix">Reading Time: </span> <span class="rt-time"> &lt; 1</span> <span class="rt-label rt-postfix">minute</span></span><h2>Linux Find String in Folder</h2>
<p>In our examples, we assume, that we want to find the name of the network card &#8220;eno16777728&#8221; in /etc folder recursively.</p>
<p>This example search &#8220;eno16777728&#8221; in /etc folder (-r means recursive, -n means print line number):</p>
<pre>grep -nr "eno16777728" /etc</pre>
<p>In next example, we would like to add ignore case with &#8220;i&#8221; option:</p>
<pre>grep -inr "eno16777728" /etc</pre>
<p>If you are not super user, it is good idea to suppress error messages with &#8220;s&#8221; option:</p>
<pre>grep -insr "eno16777728" /etc</pre>
<p>In examples mentioned before, searched string could be also a part some string. In next example, we would like to find &#8220;eno16777728&#8221; as whole word only (w option):</p>
<pre>grep -winsr "eno16777728" /etc</pre>
<p>The alternative way is use find and exec option:</p>
<pre>find /etc -type f -exec grep -il 'eno16777728' {} \;</pre>
<p>In this case option exec executes grep command for each founded file. In {} is a list of founded files.</p>
<p><a class="a2a_button_mastodon" href="https://www.addtoany.com/add_to/mastodon?linkurl=https%3A%2F%2Flinuxcent.com%2Flinux-find-string-in-folder%2F&amp;linkname=Linux%20Find%20String%20in%20Folder" title="Mastodon" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Flinuxcent.com%2Flinux-find-string-in-folder%2F&amp;linkname=Linux%20Find%20String%20in%20Folder" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Flinuxcent.com%2Flinux-find-string-in-folder%2F&amp;linkname=Linux%20Find%20String%20in%20Folder" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_reddit" href="https://www.addtoany.com/add_to/reddit?linkurl=https%3A%2F%2Flinuxcent.com%2Flinux-find-string-in-folder%2F&amp;linkname=Linux%20Find%20String%20in%20Folder" title="Reddit" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_x" href="https://www.addtoany.com/add_to/x?linkurl=https%3A%2F%2Flinuxcent.com%2Flinux-find-string-in-folder%2F&amp;linkname=Linux%20Find%20String%20in%20Folder" title="X" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Flinuxcent.com%2Flinux-find-string-in-folder%2F&amp;linkname=Linux%20Find%20String%20in%20Folder" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_copy_link" href="https://www.addtoany.com/add_to/copy_link?linkurl=https%3A%2F%2Flinuxcent.com%2Flinux-find-string-in-folder%2F&amp;linkname=Linux%20Find%20String%20in%20Folder" title="Copy Link" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Flinuxcent.com%2Flinux-find-string-in-folder%2F&#038;title=Linux%20Find%20String%20in%20Folder" data-a2a-url="https://linuxcent.com/linux-find-string-in-folder/" data-a2a-title="Linux Find String in Folder"></a></p><p>The post <a href="https://linuxcent.com/linux-find-string-in-folder/">Linux Find String in Folder</a> appeared first on <a href="https://linuxcent.com">Linuxcent</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://linuxcent.com/linux-find-string-in-folder/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1120</post-id>	</item>
		<item>
		<title>Linux How to Find File by Name</title>
		<link>https://linuxcent.com/linux-how-to-find-file-by-name/</link>
					<comments>https://linuxcent.com/linux-how-to-find-file-by-name/#respond</comments>
		
		<dc:creator><![CDATA[Raju]]></dc:creator>
		<pubDate>Wed, 08 Sep 2021 10:52:23 +0000</pubDate>
				<category><![CDATA[Linux Tutorials]]></category>
		<guid isPermaLink="false">https://linuxcent.com/?p=1124</guid>

					<description><![CDATA[<p><span class="span-reading-time rt-reading-time" style="display: block;"><span class="rt-label rt-prefix">Reading Time: </span> <span class="rt-time"> &#60; 1</span> <span class="rt-label rt-postfix">minute</span></span>Linux How to Find File by Name To search for files on the disk, you can use the find command. The find command has the following syntax: find /where_to_start -name "name_of_file" If you do not mention the parameter /where_to_start, it will automatically search in the current directory. The current directory, which you currently stand, is ... <a title="Linux How to Find File by Name" class="read-more" href="https://linuxcent.com/linux-how-to-find-file-by-name/" aria-label="Read more about Linux How to Find File by Name">Read more</a></p>
<p>The post <a href="https://linuxcent.com/linux-how-to-find-file-by-name/">Linux How to Find File by Name</a> appeared first on <a href="https://linuxcent.com">Linuxcent</a>.</p>
]]></description>
										<content:encoded><![CDATA[<span class="span-reading-time rt-reading-time" style="display: block;"><span class="rt-label rt-prefix">Reading Time: </span> <span class="rt-time"> &lt; 1</span> <span class="rt-label rt-postfix">minute</span></span><h2>Linux How to Find File by Name</h2>
<p>To search for files on the disk, you can use the find command. The find command has the following syntax:</p>
<pre>find /where_to_start -name "name_of_file"</pre>
<p>If you do not mention the parameter /where_to_start, it will automatically search in the current directory. The current directory, which you currently stand, is available by typing pwd command. The second parameter -name &#8220;name_of_file&#8221; &#8211; is shown filter. This filter shows only those files in which there is a string &#8220;name_of_file&#8221;. You can also include an asterisk, for example: &#8220;name_of_file.*&#8221;.</p>
<p>If you want to recursively overview /etc directory and find all files that have the extension &#8220;.conf&#8221;, you can do it this way:</p>
<pre>find /etc -name "*.conf"</pre>
<p>If the find command does not access to any folder, it write error about it. If you do not run the command as super user, it is better to redirect error messages to $HOME/find_errors or to trash /dev/null.</p>
<p>In next example we redirect errors to file find_errors that will be situated in our home folder:</p>
<pre>find /etc -name "*.conf" 2&gt; $HOME/find_errors</pre>
<p>In next example we redirect errors to the system trash:</p>
<pre>find /etc -name "*.conf" 2&gt; /dev/null</pre>
<p>To find file by a name, ignoring the case use option -iname:</p>
<pre>find /etc -iname "name_of_file"</pre>
<p>If you want to find all files these don&#8217;t match the pattern:</p>
<pre>find /etc -not -name ".*.conf"</pre>
<p><a class="a2a_button_mastodon" href="https://www.addtoany.com/add_to/mastodon?linkurl=https%3A%2F%2Flinuxcent.com%2Flinux-how-to-find-file-by-name%2F&amp;linkname=Linux%20How%20to%20Find%20File%20by%20Name" title="Mastodon" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_email" href="https://www.addtoany.com/add_to/email?linkurl=https%3A%2F%2Flinuxcent.com%2Flinux-how-to-find-file-by-name%2F&amp;linkname=Linux%20How%20to%20Find%20File%20by%20Name" title="Email" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Flinuxcent.com%2Flinux-how-to-find-file-by-name%2F&amp;linkname=Linux%20How%20to%20Find%20File%20by%20Name" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_reddit" href="https://www.addtoany.com/add_to/reddit?linkurl=https%3A%2F%2Flinuxcent.com%2Flinux-how-to-find-file-by-name%2F&amp;linkname=Linux%20How%20to%20Find%20File%20by%20Name" title="Reddit" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_x" href="https://www.addtoany.com/add_to/x?linkurl=https%3A%2F%2Flinuxcent.com%2Flinux-how-to-find-file-by-name%2F&amp;linkname=Linux%20How%20to%20Find%20File%20by%20Name" title="X" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_linkedin" href="https://www.addtoany.com/add_to/linkedin?linkurl=https%3A%2F%2Flinuxcent.com%2Flinux-how-to-find-file-by-name%2F&amp;linkname=Linux%20How%20to%20Find%20File%20by%20Name" title="LinkedIn" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_copy_link" href="https://www.addtoany.com/add_to/copy_link?linkurl=https%3A%2F%2Flinuxcent.com%2Flinux-how-to-find-file-by-name%2F&amp;linkname=Linux%20How%20to%20Find%20File%20by%20Name" title="Copy Link" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Flinuxcent.com%2Flinux-how-to-find-file-by-name%2F&#038;title=Linux%20How%20to%20Find%20File%20by%20Name" data-a2a-url="https://linuxcent.com/linux-how-to-find-file-by-name/" data-a2a-title="Linux How to Find File by Name"></a></p><p>The post <a href="https://linuxcent.com/linux-how-to-find-file-by-name/">Linux How to Find File by Name</a> appeared first on <a href="https://linuxcent.com">Linuxcent</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://linuxcent.com/linux-how-to-find-file-by-name/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1124</post-id>	</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Page Caching using Disk: Enhanced 

Served from: linuxcent.com @ 2026-08-12 21:29:39 by W3 Total Cache
-->