{"id":18459,"date":"2020-06-25T02:30:19","date_gmt":"2020-06-25T09:30:19","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=18459"},"modified":"2023-12-01T03:23:32","modified_gmt":"2023-12-01T11:23:32","slug":"linux-ls-command","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/linux-ls-command\/","title":{"rendered":"Linux ls Command: A Guide"},"content":{"rendered":"\n<p>One of the most fundamental commands you need to know when using the Linux command line is the <code>ls<\/code> command. This command allows you to see what files and directories exist within the file system. It also provides additional information about a file or folder, such as its access and ownership permissions.<br><\/p>\n\n\n\n<p>In this guide, we\u2019re going to discuss how to use the Linux ls command. We\u2019ll also provide a few examples of the command in action so you can start putting it to use.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Use the ls Command<\/h2>\n\n\n\n<p>The ls command allows you to list all the files and folders in a given directory.<br><\/p>\n\n\n\n<p>The most basic usage of the ls command is to use it without any options. When you run ls alone, it will display a list of all the files and folders in your current working directory. Here\u2019s an example of the ls command in action:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>ls<\/pre><\/div>\n\n\n\n<p>Here\u2019s the output of this command:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>README.md      lib         package-lock.json     pages        styles.css\ncomponents     node_modules     package.json     public       yarn.lock<\/pre><\/div>\n\n\n\n<p>As you can see, the ls command has returned a list of all the files in the folder currently being viewed. Also note that ls orders the files in a folder alphabetically. Capital letters are given priority over lowercase letters, which is why \u201cREADME.md\u201d appears at the start of our list of tiles.<br><\/p>\n\n\n\n<p>You can also use the command to list the files in a particular directory. Suppose you want to know what files exist in the \u201c\/var\u201d directory on your computer. You could do so using this command:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>ls \/var<\/pre><\/div>\n\n\n\n<p>You can only use the ls command if you have permission to read a file and its contents. Otherwise, an error will be returned.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">List Hidden Files<\/h2>\n\n\n\n<p>If you have some experience working with Linux, you\u2019ll know there are a lot of hidden files on your computer. These are files that begin with a period and do not appear when you try to list the files and folders in a directory.<br><\/p>\n\n\n\n<p>To view these files, you need to specify the <code>-a<\/code> flag with the ls command, like so:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>ls -a <\/pre><\/div>\n\n\n\n<p>This command returns:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>..\n.bash_history\n.devaccounts\nDesktop<\/pre><\/div>\n\n\n\n<p>This is only a sample of the files returned by this command. As you can see, our current working folder contains files like \u201c.bash_history\u201d and \u201c.devaccounts\u201d which would otherwise have been hidden if we had not specified the -a flag.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Detailed File Information<\/h2>\n\n\n\n<p>The ls command, by default, shows file names. But what if you want to learn more about those files? What if you want to know the owners of that file, or when it was last modified? That\u2019s where the <code>-l<\/code> flag comes in.<br><\/p>\n\n\n\n<p>The -l flag instructs Linux to print out a list of files with detailed descriptions.<br><\/p>\n\n\n\n<p>Suppose we want more information about the file \u201c\/etc\/passwd\u201d. We can get it using this command:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>ls -l \/etc\/passwd<\/pre><\/div>\n\n\n\n<p>Our command returns:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>-rw-r--r--  1 root  wheel  6946 Feb 29 06:10 \/etc\/passwd<\/pre><\/div>\n\n\n\n<p>As you can see, there\u2019s a lot more information now displayed for us to review. The -l flag shows us the following pieces of information, in order:<br><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The file type<\/li>\n\n\n\n<li>File permissions<\/li>\n\n\n\n<li>Number of hard links to the file<\/li>\n\n\n\n<li>The owner of the file<\/li>\n\n\n\n<li>The file group<\/li>\n\n\n\n<li>The size of the file<\/li>\n\n\n\n<li>When the file was last modified<\/li>\n\n\n\n<li>The name of the file and its location<\/li>\n<\/ul>\n\n\n\n<p>This tells us that the \/etc\/passwd file is owned by the user \u201croot\u201d, and that the file was last modified on February 29 at 6:10am.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">List Files Recursively<\/h2>\n\n\n\n<p>By default, the ls command only lists the files and folders in a particular directory. However, you can also use the command to generate a recursive list of the contents of all subdirectories in a folder. You can do so using the <code>-R<\/code> flag, like so:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>ls -R<\/pre><\/div>\n\n\n\n<p>This command returns:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>app.rb        \tconfig.rb        \tREADME.md   \tlib\n.\/lib:\ncreate_schema.rb<\/pre><\/div>\n\n\n\n<p>In the output of this command, we can see not only a list of the files in our current folder, but also a recursive list of the contents of all subdirectories. In this case, the \u201clib\u201d directory contains the file \u201ccreate_schema.rb\u201d, which is displayed in our output alongside all the files in our current directory.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Sort Files by File Size<\/h2>\n\n\n\n<p>The <code>-lS<\/code> flag allows you to sort the files and folders returned by the ls command by size. The files will be ordered in descending order of their size.<br><\/p>\n\n\n\n<p>Suppose we want to generate a list of all the files in the \u201c~\/ folder\u201d in order of their size. We could do so using this command:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>ls -lS<\/pre><\/div>\n\n\n\n<p>Our command returns:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>drwx------@ 98 James  staff  3136 May 16 17:37 Library\ndrwxrwxr-x  18 James  staff   576 Jun  9 10:34 Projects\ndrwx------@ 14 James  staff   448 Apr 10 12:48 Dropbox\n\u2026<\/pre><\/div>\n\n\n\n<p>The output of this command has been edited for brevity. As you can see, our files and folders are ordered in descending order of their size. \u201cLibrary\u201d is the biggest folder whose size is 3136, so it appears at the top of our list.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The Linux ls command allows you to view a list of the files and folders in a given directory. You can also use this command to display details of a file, such as the owner of the file and the permissions assigned to the file.<br><\/p>\n\n\n\n<p>If you want to learn more about the ls command, run the command <code>man ls<\/code> in your terminal. This will display the Linux manual description for the command.<\/p>\n","protected":false},"excerpt":{"rendered":"One of the most fundamental commands you need to know when using the Linux command line is the ls command. This command allows you to see what files and directories exist within the file system. It also provides additional information about a file or folder, such as its access and ownership permissions. In this guide,&hellip;","protected":false},"author":240,"featured_media":10224,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[18070],"tags":[],"class_list":{"0":"post-18459","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-software-engineering-skills"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"Software Engineering","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":"","is_sponser_post":"","is_guest_post":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.0 (Yoast SEO v27.0) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Linux ls Command: A Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"The Linux ls command allows you to see all the files and folders in a directory. On Career Karma, learn how to use the Linux ls command.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/linux-ls-command\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Linux ls Command: A Guide\" \/>\n<meta property=\"og:description\" content=\"The Linux ls command allows you to see all the files and folders in a directory. On Career Karma, learn how to use the Linux ls command.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/linux-ls-command\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2020-06-25T09:30:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T11:23:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/joshua-aragon-FkjaN-7gWC0-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"666\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"James Gallagher\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"James Gallagher\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/careerkarma.com\/blog\/linux-ls-command\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/linux-ls-command\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Linux ls Command: A Guide\",\"datePublished\":\"2020-06-25T09:30:19+00:00\",\"dateModified\":\"2023-12-01T11:23:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/linux-ls-command\/\"},\"wordCount\":847,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/linux-ls-command\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/joshua-aragon-FkjaN-7gWC0-unsplash.jpg\",\"articleSection\":[\"Software Engineering\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/linux-ls-command\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/linux-ls-command\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/linux-ls-command\/\",\"name\":\"Linux ls Command: A Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/linux-ls-command\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/linux-ls-command\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/joshua-aragon-FkjaN-7gWC0-unsplash.jpg\",\"datePublished\":\"2020-06-25T09:30:19+00:00\",\"dateModified\":\"2023-12-01T11:23:32+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"The Linux ls command allows you to see all the files and folders in a directory. On Career Karma, learn how to use the Linux ls command.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/linux-ls-command\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/linux-ls-command\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/linux-ls-command\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/joshua-aragon-FkjaN-7gWC0-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/joshua-aragon-FkjaN-7gWC0-unsplash.jpg\",\"width\":1000,\"height\":666},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/linux-ls-command\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\/\/careerkarma.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Software Engineering\",\"item\":\"https:\/\/careerkarma.com\/blog\/software-engineering-skills\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Linux ls Command: A Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\",\"url\":\"https:\/\/careerkarma.com\/blog\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/careerkarma.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\",\"name\":\"James Gallagher\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg\",\"caption\":\"James Gallagher\"},\"description\":\"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.\",\"url\":\"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Linux ls Command: A Guide | Career Karma","description":"The Linux ls command allows you to see all the files and folders in a directory. On Career Karma, learn how to use the Linux ls command.","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:\/\/careerkarma.com\/blog\/linux-ls-command\/","og_locale":"en_US","og_type":"article","og_title":"Linux ls Command: A Guide","og_description":"The Linux ls command allows you to see all the files and folders in a directory. On Career Karma, learn how to use the Linux ls command.","og_url":"https:\/\/careerkarma.com\/blog\/linux-ls-command\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-06-25T09:30:19+00:00","article_modified_time":"2023-12-01T11:23:32+00:00","og_image":[{"width":1000,"height":666,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/joshua-aragon-FkjaN-7gWC0-unsplash.jpg","type":"image\/jpeg"}],"author":"James Gallagher","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"James Gallagher","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/linux-ls-command\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/linux-ls-command\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Linux ls Command: A Guide","datePublished":"2020-06-25T09:30:19+00:00","dateModified":"2023-12-01T11:23:32+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/linux-ls-command\/"},"wordCount":847,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/linux-ls-command\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/joshua-aragon-FkjaN-7gWC0-unsplash.jpg","articleSection":["Software Engineering"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/linux-ls-command\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/linux-ls-command\/","url":"https:\/\/careerkarma.com\/blog\/linux-ls-command\/","name":"Linux ls Command: A Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/linux-ls-command\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/linux-ls-command\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/joshua-aragon-FkjaN-7gWC0-unsplash.jpg","datePublished":"2020-06-25T09:30:19+00:00","dateModified":"2023-12-01T11:23:32+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"The Linux ls command allows you to see all the files and folders in a directory. On Career Karma, learn how to use the Linux ls command.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/linux-ls-command\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/linux-ls-command\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/linux-ls-command\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/joshua-aragon-FkjaN-7gWC0-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/joshua-aragon-FkjaN-7gWC0-unsplash.jpg","width":1000,"height":666},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/linux-ls-command\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Software Engineering","item":"https:\/\/careerkarma.com\/blog\/software-engineering-skills\/"},{"@type":"ListItem","position":3,"name":"Linux ls Command: A Guide"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94","name":"James Gallagher","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","caption":"James Gallagher"},"description":"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.","url":"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/18459","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/240"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=18459"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/18459\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/10224"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=18459"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=18459"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=18459"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}