<?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>Linux Explore &#187; Linux command</title>
	<atom:link href="https://blog.linuxexplore.com/tag/linux-command/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.linuxexplore.com</link>
	<description>Exploring Linux</description>
	<lastBuildDate>Mon, 07 Apr 2014 00:30:50 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.0.38</generator>
	<item>
		<title>3 Easy Tricks for Beginners to Learn Linux Commands</title>
		<link>https://blog.linuxexplore.com/2014/04/07/3-simple-tricks-for-beginners-to-learn-linux-commands/</link>
		<comments>https://blog.linuxexplore.com/2014/04/07/3-simple-tricks-for-beginners-to-learn-linux-commands/#comments</comments>
		<pubDate>Mon, 07 Apr 2014 00:30:50 +0000</pubDate>
		<dc:creator><![CDATA[linuxexplore]]></dc:creator>
				<category><![CDATA[Linux Explore Tips & Tricks]]></category>
		<category><![CDATA[apropos]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[Linux command]]></category>
		<category><![CDATA[Linux help]]></category>
		<category><![CDATA[Linux terminal]]></category>
		<category><![CDATA[Linux Tricks]]></category>
		<category><![CDATA[man]]></category>
		<category><![CDATA[man page]]></category>

		<guid isPermaLink="false">http://linuxexplore.com/?p=865</guid>
		<description><![CDATA[If you are a Beginner in Linux, this post will help you to learn Linux commands in just 3 simple steps. Nowadays most of the Linux flavored desktop like Ubuntu, Mint, Fedora, Suse etc. are coming with very interactive user friendly graphical user interface (GUI). Using Linux GUI is similar to use other graphical user&#8230;]]></description>
				<content:encoded><![CDATA[<p>If you are a Beginner in Linux, this post will help you to learn Linux commands in just 3 simple steps.</p>
<p>Nowadays most of the Linux flavored desktop like Ubuntu, Mint, Fedora, Suse etc. are coming with very interactive user friendly graphical user interface (GUI). Using Linux GUI is similar to use other graphical user interface OS like Windows XP/7/8, Mac OS, Android or iOS etc.</p>
<p>Although Linux is coming with user friendly GUI but it is also providing a very strong command interface called command line interface (CLI) terminal similar to dos command interface in Windows. Similar to dos, this CLI is also not user friendly. But Linux terminal commands are important to learn as it is the base of this OS and if you learn this you can do almost anything in your system using terminal application (don’t take it so seriously, it will not cook food for you ;-) but definitely it will do).</p>
<p>So here is my first trick.</p>
<h2>Use <em>“apropos”</em> to find your command</h2>
<p>Any newbie when first open the Linux terminal, they can get confused because they don’t know what to do. But actually they know what to do but don’t know how to do that. So here is my first trick when you open Linux terminal. Don’t think too much, your first command is “apropos”. Using apropos command you can find all the command to do anything. For example, if you want to download a file using command, give command</p>
<p><code>apropos “download”</code></p>
<p>It will show you the list of all the commands, with their initial help, to download a file.</p>
<p><a href="http://linuxexplore.com/?attachment_id=871#main"><img class="aligncenter wp-image-871 size-large" src="http://linuxexplore.files.wordpress.com/2014/04/apropos1-900x600.png?w=700" alt="apropos" width="700" height="466" /></a>Now you try finding your command to download a file which is “wget”. wget command can be used as follows:</p>
<p><code>wget </code></p>
<p>But how will you know that <em>&#8220;wget&#8221;</em> or any other command can be used like this.</p>
<p>So here is my second tip.</p>
<h2>Use <a title="Linux Manual Pages" href="http://man.linuxexplore.com" target="_blank"><em>“man”</em> command</a> for command manual page</h2>
<p>It is very important to know about that <a title="Linux Manual Pages" href="http://man.linuxexplore.com" target="_blank">how can you get the help of any Linux command</a>. You can use any Linux command with care, if you will find its help. So after you know, which command can be used to do your task, check its manual page by <em>“man”</em> command. <a title="Linux Manual Pages" href="http://man.linuxexplore.com" target="_blank">Linux Manual pages</a> show the syntax and the detail description of the options of the command.</p>
<p><code>man &lt;command&gt;</code></p>
<p><a href="http://man.linuxexplore.com"><img class="aligncenter size-large wp-image-873" src="http://linuxexplore.files.wordpress.com/2014/04/man1-900x600.png?w=700" alt="man" width="700" height="466" /></a>Other than manual page of any Linux commands, a simple help is also there. So my third tip is about that.</p>
<h2>Use <em>“-h”</em> or <em>&#8220;&#8211;help&#8221;</em> argument for command help</h2>
<p>Most of the Linux commands have its help. Other than manual page, this help is also useful to learn the command syntax and options. Sometimes only this help is enough to execute a command but better look for its manual page to get detailed help.</p>
<p><code>wget -h</code></p>
<p>or</p>
<p><code>wget --help</code></p>
<h2><a href="http://man.linuxexplore.com"><img class="aligncenter size-large wp-image-872" src="http://linuxexplore.files.wordpress.com/2014/04/help1-900x600.png?w=700" alt="help" width="700" height="466" /></a>Conclusion</h2>
<p>After learning above three tips, you can find any required command and its manual or help. So, start finding and using Linux command line terminal.</p>
<p>Please feel free to contact me if you still need any help in using Linux.</p>
<h3>Related Page:</h3>
<p><a title="Linux Manual Pages" href="http://man.linuxexplore.com" target="_blank">Linux Commands Man Pages</a></p>
]]></content:encoded>
			<wfw:commentRss>https://blog.linuxexplore.com/2014/04/07/3-simple-tricks-for-beginners-to-learn-linux-commands/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
