{"id":2792,"date":"2023-01-13T18:07:56","date_gmt":"2023-01-13T18:07:56","guid":{"rendered":"https:\/\/devclouds.io\/blog\/?p=2792"},"modified":"2023-01-18T16:20:56","modified_gmt":"2023-01-18T16:20:56","slug":"linux-commands-which-info-man-cd-mkdir","status":"publish","type":"post","link":"https:\/\/devclouds.io\/blog\/linux-commands-which-info-man-cd-mkdir\/","title":{"rendered":"Linux Commands which info man cd mkdir"},"content":{"rendered":"\n<p>In this article we&#8217;re just gonna learn Linux Commands | which | info | man | cd | mkdir. But before we get into a few more commands I like you tell about the fact that everything we do in linux. Every command is actually a program.<\/p>\n\n\n\n<p>if you want to see last commands that we learned you can go to our previous article<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/devclouds.io\/blog\/familiarizing-yourself-with-the-linux-terminal\/\"><\/a><a href=\"https:\/\/devclouds.io\/blog\/familiarizing-yourself-with-the-linux-terminal\/\">familiarizing-yourself-with-the-linux-terminal<\/a><\/li>\n<\/ul>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img decoding=\"async\" src=\"https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_49-1024x350.jpg\" alt=\"ls Command\" class=\"wp-image-2793\" width=\"768\" height=\"263\" srcset=\"https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_49-1024x350.jpg 1024w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_49-300x103.jpg 300w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_49-768x263.jpg 768w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_49.jpg 1091w\" sizes=\"(max-width: 768px) 100vw, 768px\" \/><\/figure>\n<\/div>\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>So PWD for example which means present working directory is a program if you think about it if i type &#8220;pwd&#8221; enter.It shows me that i am currently in &#8220;\/home\/dare&#8221; folder it&#8217;s doing a specific task it&#8217;s doing something that i wanted to do.<\/p>\n\n\n\n<p>So that means there has to be some logic that has been written in this command to know. That that&#8217;s exactly what i wanted to do. Or if i did &#8220;LS&#8221; how come &#8220;LS&#8221; command knows that it needs to show me folders and files in my current working directory.<\/p>\n\n\n\n<p>Why couldn&#8217;t the &#8220;LS&#8221; have done what the pwd &#8220;did? you can see the differences there. So what that means is this command is actually a program written for this specific purpose.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-linux-commands-which-info-man-cd-mkdir\">Linux Commands | which | info | man | cd | mkdir<\/h2>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img decoding=\"async\" src=\"https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_50-1024x382.jpg\" alt=\"which command\" class=\"wp-image-2794\" width=\"768\" height=\"287\" srcset=\"https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_50-1024x382.jpg 1024w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_50-300x112.jpg 300w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_50-768x287.jpg 768w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_50.jpg 1154w\" sizes=\"(max-width: 768px) 100vw, 768px\" \/><\/figure>\n<\/div>\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>How do we know where this command is on the file system. Well there&#8217;s another command &#8220;which&#8221; you can use which I&#8217;m just going to type it here. So we keep a record of all the commands we&#8217;ve been learning. So if i type &#8220;which ls&#8221; it basically shows me where on the file system ls command is stored.<\/p>\n\n\n\n<p>We&#8217;re going to go into the details of what this &#8220;usr\/bin&#8221;. And all that the whole file system structure but the focus now is to know the different commands. What they do and how we can make use of them.<\/p>\n\n\n\n<p>If I want to know where the &#8220;pwd&#8221; command is. I can also do &#8220;which pwd&#8221; and it tells me it&#8217;s also in &#8220;usr.bin&#8221;. So we&#8217;ve just learned about the &#8220;Which&#8221; command.<\/p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img decoding=\"async\" src=\"https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_51-1024x653.jpg\" alt=\"Which Detail\" class=\"wp-image-2795\" width=\"768\" height=\"490\" srcset=\"https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_51-1024x653.jpg 1024w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_51-300x191.jpg 300w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_51-768x489.jpg 768w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_51.jpg 1078w\" sizes=\"(max-width: 768px) 100vw, 768px\" \/><\/figure>\n<\/div>\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Now another thing you would want to know is how to get more information about a specific command. That you&#8217;re using say for example i want to know what &#8220;which&#8221; command does.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-how-to-use-info-command-on-linux\">How to use Info Command on Linux<\/h2>\n\n\n\n<p>Well it turns out that on Linux there&#8217;s a command that you can run well a couple of them the first one &#8220;info&#8221;. If you type &#8220;info which&#8221;it will come up with a bunch of text that basically describes what that command does.<\/p>\n\n\n\n<p>As you can see here it says &#8220;which&#8221; locate a command which is what we&#8217;ve just done to locate where that command is?.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-how-to-use-the-man-command-on-linux\">How to use the Man Command on Linux<\/h2>\n\n\n\n<p>There&#8217;s another one called &#8220;man&#8221; man meaning manual. If you want to read the manual for something &#8220;man which&#8221; does the same thing well maybe not the same thing but similar thing. Because in some commands you wouldn&#8217;t see exact same documentation like this. But in the case of &#8220;which&#8221; we&#8217;ve sent the same documentation that info gave us.<\/p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img decoding=\"async\" src=\"https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_52-1024x629.jpg\" alt=\"Man ls Command\" class=\"wp-image-2796\" width=\"768\" height=\"472\" srcset=\"https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_52-1024x629.jpg 1024w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_52-300x184.jpg 300w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_52-768x472.jpg 768w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_52.jpg 1074w\" sizes=\"(max-width: 768px) 100vw, 768px\" \/><\/figure>\n<\/div>\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Let&#8217;s try that on ls &#8220;info ls&#8221; this is also giving us a couple of information about &#8220;ls&#8221;. It says the &#8220;ls&#8221; program lists information about files of any type including directories. It just gives us more information about them.<\/p>\n\n\n\n<p>And to get out of the command all I&#8217;ve been pressing is the letter &#8220;q&#8221; on the command on the keyboard so if you press q it basically gets you out &#8220;info&#8221; and &#8220;man&#8221; command.<\/p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img decoding=\"async\" src=\"https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_53-1024x629.jpg\" alt=\"Man Command detail\" class=\"wp-image-2797\" width=\"768\" height=\"472\" srcset=\"https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_53-1024x629.jpg 1024w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_53-300x184.jpg 300w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_53-768x472.jpg 768w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_53.jpg 1071w\" sizes=\"(max-width: 768px) 100vw, 768px\" \/><\/figure>\n<\/div>\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Let&#8217;s go into &#8220;man ls&#8221; and you can see the way it&#8217;s written out is slightly different. So name is &#8220;list directory contents&#8221;. And description is &#8220;information about the FILEs (the current directory by default) blah blah blah.<\/p>\n\n\n\n<p>You know there&#8217;s a lot more details in this, if you keep pressing &#8220;down&#8221; there&#8217;s so many more information about it. So by typing &#8220;q&#8221; it takes me out of that.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-how-to-use-mkdir-command-on-linux\">How to use mkdir command on Linux<\/h2>\n\n\n\n<p>Next thing i want to show us is the &#8220;cd&#8221; command so let&#8217;s let&#8217;s take a note of that &#8220;cd&#8221; and what that means is &#8220;change directory&#8221;.<\/p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\"><img decoding=\"async\" src=\"https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_54.jpg\" alt=\"mkdir command\" class=\"wp-image-2799\" width=\"678\" height=\"137\" srcset=\"https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_54.jpg 904w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_54-300x61.jpg 300w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_54-768x155.jpg 768w\" sizes=\"(max-width: 678px) 100vw, 678px\" \/><\/figure>\n<\/div>\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>But before we do that let&#8217;s create a directory so that&#8217;s going to lead us to another command which is &#8220;mkdir&#8221;.  let&#8217;s make a directory and navigate.<\/p>\n\n\n\n<p>&#8220;mkdir DevOps_folder&#8221;<\/p>\n\n\n\n<p>This command will make a directory. To see whether it has created this folder or not use &#8220;LS&#8221; command. DevOps_folder  is right there as you can see in picture above.<\/p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\"><img decoding=\"async\" src=\"https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_55.jpg\" alt=\"create folder inside a folder\" class=\"wp-image-2800\" width=\"706\" height=\"329\" srcset=\"https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_55.jpg 941w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_55-300x140.jpg 300w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_55-768x358.jpg 768w\" sizes=\"(max-width: 706px) 100vw, 706px\" \/><\/figure>\n<\/div>\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Now try to create another folder inside the DevOps_folder. How do we do that type:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mkdir DevOps_folder\/inside_folder<\/code><\/pre>\n\n\n\n<p>let&#8217;s go on the GUI as you can see we have the DevOps_folder and have another folder in there. Which is inside_folder you can see inside folder that&#8217;s what we&#8217;ve done.<\/p>\n\n\n\n<p>In inside folder there&#8217;s nothing there let&#8217;s try to create something else inside inside folder. Now what i&#8217;m gonna do is i would use this command<\/p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img decoding=\"async\" src=\"https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_56-1024x489.jpg\" alt=\"create folder inside a folder2\" class=\"wp-image-2801\" width=\"768\" height=\"367\" srcset=\"https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_56-1024x489.jpg 1024w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_56-300x143.jpg 300w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_56-768x367.jpg 768w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_56.jpg 1221w\" sizes=\"(max-width: 768px) 100vw, 768px\" \/><\/figure>\n<\/div>\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>mkdir DevOps_folder\/inside_folder\/second_inside_folder<\/code><\/pre>\n\n\n\n<p>You can see that it has now created another folder inside the first folder so we&#8217;re basically going from one photo to another.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-how-to-use-cd-command-on-linux\">How to use cd command on Linux<\/h2>\n\n\n\n<p><\/p>\n\n\n\n<p>Okay now let&#8217;s go inside &#8220;DevOps_folder&#8221; on the terminal use this command:<\/p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img decoding=\"async\" src=\"https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_57-1024x443.jpg\" alt=\"pwd and ls commands\" class=\"wp-image-2802\" width=\"768\" height=\"332\" srcset=\"https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_57-1024x443.jpg 1024w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_57-300x130.jpg 300w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_57-768x332.jpg 768w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_57.jpg 1365w\" sizes=\"(max-width: 768px) 100vw, 768px\" \/><\/figure>\n<\/div>\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<pre class=\"wp-block-code\"><code>cd DevOps_folder<\/code><\/pre>\n\n\n\n<p>If we do &#8220;pwd&#8221; you can see we are now in &#8220;DevOps_folder&#8221;. To  see what items are inside this folder use &#8220;ls&#8221; command.<\/p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\"><img decoding=\"async\" src=\"https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_58.jpg\" alt=\"ls command\" class=\"wp-image-2803\" width=\"676\" height=\"244\" srcset=\"https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_58.jpg 676w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_58-300x108.jpg 300w\" sizes=\"(max-width: 676px) 100vw, 676px\" \/><\/figure>\n<\/div>\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>If we want to go inside the &#8220;inside_folder&#8221; we will do &#8220;cd inside_folder&#8221; again. And if i type in &#8220;ls&#8221; to see what is inside the &#8220;inside_folder&#8221; we will see the &#8220;second_inside_folder&#8221;.<\/p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full is-resized\"><img decoding=\"async\" src=\"https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_59.jpg\" alt=\"cd command\" class=\"wp-image-2804\" width=\"765\" height=\"310\" srcset=\"https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_59.jpg 1020w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_59-300x121.jpg 300w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_59-768x311.jpg 768w\" sizes=\"(max-width: 765px) 100vw, 765px\" \/><\/figure>\n<\/div>\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Now you se cd command for second_inside_folder to open it on Linux terminal. And do &#8220;LS&#8221; do we have anything no empty.<\/p>\n\n\n\n<p>As you can see pwd will show us how we have navigated from home of dare to DevOps_folder to inside_folder to second_inside_folder.<\/p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img decoding=\"async\" src=\"https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_60-1024x429.jpg\" alt=\"cd enter command\" class=\"wp-image-2805\" width=\"768\" height=\"322\" srcset=\"https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_60-1024x429.jpg 1024w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_60-300x126.jpg 300w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_60-768x322.jpg 768w, https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/Screenshot_60.jpg 1090w\" sizes=\"(max-width: 768px) 100vw, 768px\" \/><\/figure>\n<\/div>\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>If we wanted to go back to home all we have to do is &#8220;cd&#8221; and &#8220;enter&#8221;. It just takes us all the way back to home. If we do pwd you can see we are now back into home directory.<\/p>\n\n\n\n<p>today we learned Linux Commands | which | info | man | cd | mkdir.<\/p>\n\n\n\n<p>In the next couple of articles we would see a few more tricks on how to work around the Linux file system i hope this has been very informative for you.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>learn a couple more commands but before we get into a few more commands.<\/p>\n","protected":false},"author":5,"featured_media":3188,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[11],"tags":[],"class_list":["post-2792","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-devops"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v19.6 (Yoast SEO v19.14) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Linux Commands which info man cd mkdir -<\/title>\n<meta name=\"description\" content=\"Linux Commands which info man cd mkdir | How to get more information about the command you&#039;re using on Linux\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/devclouds.io\/blog\/linux-commands-which-info-man-cd-mkdir\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Linux Commands which info man cd mkdir\" \/>\n<meta property=\"og:description\" content=\"Linux Commands which info man cd mkdir | How to get more information about the command you&#039;re using on Linux\" \/>\n<meta property=\"og:url\" content=\"https:\/\/devclouds.io\/blog\/linux-commands-which-info-man-cd-mkdir\/\" \/>\n<meta property=\"og:site_name\" content=\"The Official DevClouds Blogs\" \/>\n<meta property=\"article:published_time\" content=\"2023-01-13T18:07:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-01-18T16:20:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/demo-y-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"400\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"hammad\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"hammad\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/devclouds.io\/blog\/linux-commands-which-info-man-cd-mkdir\/\",\"url\":\"https:\/\/devclouds.io\/blog\/linux-commands-which-info-man-cd-mkdir\/\",\"name\":\"Linux Commands which info man cd mkdir -\",\"isPartOf\":{\"@id\":\"https:\/\/devclouds.io\/blog\/#website\"},\"datePublished\":\"2023-01-13T18:07:56+00:00\",\"dateModified\":\"2023-01-18T16:20:56+00:00\",\"author\":{\"@id\":\"https:\/\/devclouds.io\/blog\/#\/schema\/person\/29fe135874604a656a492f57fb43211d\"},\"description\":\"Linux Commands which info man cd mkdir | How to get more information about the command you're using on Linux\",\"breadcrumb\":{\"@id\":\"https:\/\/devclouds.io\/blog\/linux-commands-which-info-man-cd-mkdir\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/devclouds.io\/blog\/linux-commands-which-info-man-cd-mkdir\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/devclouds.io\/blog\/linux-commands-which-info-man-cd-mkdir\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/devclouds.io\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Linux Commands which info man cd mkdir\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/devclouds.io\/blog\/#website\",\"url\":\"https:\/\/devclouds.io\/blog\/\",\"name\":\"The Official DevClouds Blogs\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/devclouds.io\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/devclouds.io\/blog\/#\/schema\/person\/29fe135874604a656a492f57fb43211d\",\"name\":\"hammad\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/devclouds.io\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/19d1520a5ed46e5c53b8333bc3a9bddb9f28e057d9722fbb8e979edd11e22faf?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/19d1520a5ed46e5c53b8333bc3a9bddb9f28e057d9722fbb8e979edd11e22faf?s=96&d=mm&r=g\",\"caption\":\"hammad\"},\"url\":\"https:\/\/devclouds.io\/blog\/author\/hammad\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Linux Commands which info man cd mkdir -","description":"Linux Commands which info man cd mkdir | How to get more information about the command you're using on Linux","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/devclouds.io\/blog\/linux-commands-which-info-man-cd-mkdir\/","og_locale":"en_US","og_type":"article","og_title":"Linux Commands which info man cd mkdir","og_description":"Linux Commands which info man cd mkdir | How to get more information about the command you're using on Linux","og_url":"https:\/\/devclouds.io\/blog\/linux-commands-which-info-man-cd-mkdir\/","og_site_name":"The Official DevClouds Blogs","article_published_time":"2023-01-13T18:07:56+00:00","article_modified_time":"2023-01-18T16:20:56+00:00","og_image":[{"width":750,"height":400,"url":"https:\/\/devclouds.io\/blog\/wp-content\/uploads\/2023\/01\/demo-y-1.png","type":"image\/png"}],"author":"hammad","twitter_card":"summary_large_image","twitter_misc":{"Written by":"hammad","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/devclouds.io\/blog\/linux-commands-which-info-man-cd-mkdir\/","url":"https:\/\/devclouds.io\/blog\/linux-commands-which-info-man-cd-mkdir\/","name":"Linux Commands which info man cd mkdir -","isPartOf":{"@id":"https:\/\/devclouds.io\/blog\/#website"},"datePublished":"2023-01-13T18:07:56+00:00","dateModified":"2023-01-18T16:20:56+00:00","author":{"@id":"https:\/\/devclouds.io\/blog\/#\/schema\/person\/29fe135874604a656a492f57fb43211d"},"description":"Linux Commands which info man cd mkdir | How to get more information about the command you're using on Linux","breadcrumb":{"@id":"https:\/\/devclouds.io\/blog\/linux-commands-which-info-man-cd-mkdir\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/devclouds.io\/blog\/linux-commands-which-info-man-cd-mkdir\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/devclouds.io\/blog\/linux-commands-which-info-man-cd-mkdir\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/devclouds.io\/blog\/"},{"@type":"ListItem","position":2,"name":"Linux Commands which info man cd mkdir"}]},{"@type":"WebSite","@id":"https:\/\/devclouds.io\/blog\/#website","url":"https:\/\/devclouds.io\/blog\/","name":"The Official DevClouds Blogs","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/devclouds.io\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/devclouds.io\/blog\/#\/schema\/person\/29fe135874604a656a492f57fb43211d","name":"hammad","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/devclouds.io\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/19d1520a5ed46e5c53b8333bc3a9bddb9f28e057d9722fbb8e979edd11e22faf?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/19d1520a5ed46e5c53b8333bc3a9bddb9f28e057d9722fbb8e979edd11e22faf?s=96&d=mm&r=g","caption":"hammad"},"url":"https:\/\/devclouds.io\/blog\/author\/hammad\/"}]}},"_links":{"self":[{"href":"https:\/\/devclouds.io\/blog\/wp-json\/wp\/v2\/posts\/2792","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/devclouds.io\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/devclouds.io\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/devclouds.io\/blog\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/devclouds.io\/blog\/wp-json\/wp\/v2\/comments?post=2792"}],"version-history":[{"count":6,"href":"https:\/\/devclouds.io\/blog\/wp-json\/wp\/v2\/posts\/2792\/revisions"}],"predecessor-version":[{"id":3192,"href":"https:\/\/devclouds.io\/blog\/wp-json\/wp\/v2\/posts\/2792\/revisions\/3192"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/devclouds.io\/blog\/wp-json\/wp\/v2\/media\/3188"}],"wp:attachment":[{"href":"https:\/\/devclouds.io\/blog\/wp-json\/wp\/v2\/media?parent=2792"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/devclouds.io\/blog\/wp-json\/wp\/v2\/categories?post=2792"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/devclouds.io\/blog\/wp-json\/wp\/v2\/tags?post=2792"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}