{"id":18472,"date":"2020-11-26T06:13:23","date_gmt":"2020-11-26T14:13:23","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=18472"},"modified":"2023-12-01T04:05:00","modified_gmt":"2023-12-01T12:05:00","slug":"linux-delete-directory","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/linux-delete-directory\/","title":{"rendered":"How to Delete a Directory in Linux"},"content":{"rendered":"\n<p><em>You can delete a directory in Linux using the rm command. The rm command can delete a directory if it contains files as long as you use the -r flag. If a directory is empty, you can delete it using the rm or rmdir commands.<\/em><\/p>\n\n\n\n<p>How do I delete a directory in Linux? This is a common question asked by Linux newbies. As you start working with the Linux operating system, it\u2019s inevitable that you\u2019ll want to delete a directory at some point.<\/p>\n\n\n\n<p>Working with Linux requires learning much more than the basics of the C programming language and other <a href=\"https:\/\/careerkarma.com\/blog\/what-is-coding-used-for\/\">coding languages<\/a>. In this article, we\u2019re going to discuss two methods you can use to delete a directory in Linux. We\u2019ll also provide an example of each of these methods so you can get to work deleting directories as soon as possible.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-how-to-delete-a-directory-in-linux\">How to Delete a Directory in Linux<\/h2>\n\n\n\n<p>In Linux, there are two ways to delete a directory:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>rmdir: This command deletes an empty directory.<\/li><li>rm command: This command deletes a directory including its subdirectories. You must use the -r flag with this command if the folder contains any files.<\/li><\/ul>\n\n\n\n<p>You may be accustomed to dragging folders into your computer\u2019s trash can when you\u2019re ready to delete them. The trash acts as a storage facility for documents you are going to delete. Before the file is deleted, you need to empty out your trash can.<\/p>\n\n\n\n<p>When you\u2019re using the Linux command line, you should know there is no trash can. Once you\u2019ve deleted a file or a directory, it\u2019s gone.<\/p>\n\n\n\n<p>To learn more about the command line, read our <a href=\"https:\/\/careerkarma.com\/blog\/linux-command-line\/\">guide to learn the Linux command line<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-linux-delete-directory-rm-command\">Linux Delete Directory: rm Command<\/h2>\n\n\n\n<p>The <em>rm<\/em> command allows you to delete files and directories. This command can be used to delete both empty and non-empty directories, unlike <em>rmdir<\/em> as we\u2019ll discuss in a minute.<\/p>\n\n\n\n<p>The syntax for the rm command is as follows:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>rm [flags] [file\/folder name]<\/pre><\/div>\n\n\n\n<p>There are two flags which allow you to delete a directory using <em>rm<\/em>. These are:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>-d: Delete an empty directory<\/li><li>-r: Delete a non-empty directory and all of its contents<\/li><\/ul>\n\n\n\n<p>Suppose we want to delete a folder called \u201clib\u201d in our current working directory. If we run the following command we can see what contents our folder contains:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>ls lib\/<\/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>setup.py\ncalculate.py<\/pre><\/div>\n\n\n\n<p>Because this folder contains files, we need to use the <em>-r<\/em> flag to delete it. We can do so using the following command:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>rm -r lib\/<\/pre><\/div>\n\n\n\n<p>Our command deleted the \u201clib\u201d folder and all of its directories.<\/p>\n\n\n\n<p>You can also use <em>rm<\/em> to delete multiple directories. To do so, you can specify multiple folder names after <em>rm<\/em>. Suppose you want to delete the folders \u201clib\u201d and \u201ctemplates\u201d in your current working directory. You could do so using this command:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>rm -r lib templates<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-force-delete-a-directory-and-its-contents\">Force Delete a Directory and Its Contents<\/h3>\n\n\n\n<p>By default, the <em>rm -r<\/em> command will prompt you to confirm the deletion of a file or folder. This happens if a file you are trying to delete has been protected. If you want to override this, you can specify the -f flag, like so:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>rm -rf lib<\/pre><\/div>\n\n\n\n<p>This command will delete all directories and subdirectories in the \u201clib\u201d directory permanently. You will not be prompted to confirm whether you want to delete any files when you run this command. So, you should use this command sparingly and only when you\u2019re absolutely sure you want to delete the contents of a folder.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-delete-directory-linux-rmdir-command\">Delete Directory Linux: rmdir Command<\/h2>\n\n\n\n<p>The rmdir command allows you to delete empty directories. This command is useful if you know a folder is empty and want to remove it from your system.<\/p>\n\n\n\n<p>Suppose our current working directory contains the following files and folders (which we can see by using the <a href=\"https:\/\/careerkarma.com\/blog\/linux-ls-command\/\">Linux \u201cls\u201d command<\/a>):<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>app.py\nconfig\ndev.py<\/pre><\/div>\n\n\n\n<p>The \u201cconfig\u201d folder is empty. Suppose you want to delete the folder \u201cconfig\u201d in your current working directory. You could do so using this command:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>rmdir config<\/pre><\/div>\n\n\n\n<p>If we run <em>ls<\/em> to see the contents of our current folder, our command returns:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>app.py\ndev.py<\/pre><\/div>\n\n\n\n<p>You can see that the \u201cconfig\u201d directory no longer exists. It\u2019s important to note that you cannot use rmdir to delete a directory that contains a file. If our \u201cconfig\u201d directory contained a file, the following error would have been returned:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>rmdir: config\/: Directory not empty<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-conclusion\">Conclusion<\/h2>\n\n\n\n<p>Using <em>rm<\/em> and <em>rmdir<\/em>, you can delete directories in Linux. <em>rm<\/em> deletes non-empty directories. The <em>rmdir<\/em> command delete empty directories. It cannot be used to delete a directory that contains any files.<\/p>\n\n\n\n<p>If you want to learn more about these commands, type in <em>man<\/em>, followed by the name of the command, in your terminal. This will show you the Linux manual page for the command.<\/p>\n\n\n\n<p>Before you delete a file, make sure you have chosen the right one to delete. There is no turning back when you use a command like <em>rm<\/em> or <em>rmdir<\/em>.<\/p>\n\n\n\n<p>To learn more about Linux, read our <a href=\"https:\/\/careerkarma.com\/blog\/how-to-learn-linux\/\">How to Learn Linux guide<\/a>. This guide contains courses and resources to help you along your journey toward learning Linux.<\/p>\n","protected":false},"excerpt":{"rendered":"You can delete a directory in Linux using the rm command. The rm command can delete a directory if it contains files as long as you use the -r flag. If a directory is empty, you can delete it using the rm or rmdir commands. How do I delete a directory in Linux? This is&hellip;","protected":false},"author":240,"featured_media":18474,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[18070],"tags":[],"class_list":{"0":"post-18472","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":null,"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>How to Delete a Directory in Linux | Career Karma<\/title>\n<meta name=\"description\" content=\"The Linux rmdir and rm -r commands allow you to delete a directory in Linux. On Career Karma, learn how to use these commands.\" \/>\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-delete-directory\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Delete a Directory in Linux\" \/>\n<meta property=\"og:description\" content=\"The Linux rmdir and rm -r commands allow you to delete a directory in Linux. On Career Karma, learn how to use these commands.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/linux-delete-directory\/\" \/>\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-11-26T14:13:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:05:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/james-harrison-vpOeXr5wmR4-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"574\" \/>\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-delete-directory\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/linux-delete-directory\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"How to Delete a Directory in Linux\",\"datePublished\":\"2020-11-26T14:13:23+00:00\",\"dateModified\":\"2023-12-01T12:05:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/linux-delete-directory\/\"},\"wordCount\":840,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/linux-delete-directory\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/james-harrison-vpOeXr5wmR4-unsplash.jpg\",\"articleSection\":[\"Software Engineering\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/linux-delete-directory\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/linux-delete-directory\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/linux-delete-directory\/\",\"name\":\"How to Delete a Directory in Linux | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/linux-delete-directory\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/linux-delete-directory\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/james-harrison-vpOeXr5wmR4-unsplash.jpg\",\"datePublished\":\"2020-11-26T14:13:23+00:00\",\"dateModified\":\"2023-12-01T12:05:00+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"The Linux rmdir and rm -r commands allow you to delete a directory in Linux. On Career Karma, learn how to use these commands.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/linux-delete-directory\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/linux-delete-directory\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/linux-delete-directory\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/james-harrison-vpOeXr5wmR4-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/james-harrison-vpOeXr5wmR4-unsplash.jpg\",\"width\":1020,\"height\":574},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/linux-delete-directory\/#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\":\"How to Delete a Directory in Linux\"}]},{\"@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":"How to Delete a Directory in Linux | Career Karma","description":"The Linux rmdir and rm -r commands allow you to delete a directory in Linux. On Career Karma, learn how to use these commands.","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-delete-directory\/","og_locale":"en_US","og_type":"article","og_title":"How to Delete a Directory in Linux","og_description":"The Linux rmdir and rm -r commands allow you to delete a directory in Linux. On Career Karma, learn how to use these commands.","og_url":"https:\/\/careerkarma.com\/blog\/linux-delete-directory\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-11-26T14:13:23+00:00","article_modified_time":"2023-12-01T12:05:00+00:00","og_image":[{"width":1020,"height":574,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/james-harrison-vpOeXr5wmR4-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-delete-directory\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/linux-delete-directory\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"How to Delete a Directory in Linux","datePublished":"2020-11-26T14:13:23+00:00","dateModified":"2023-12-01T12:05:00+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/linux-delete-directory\/"},"wordCount":840,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/linux-delete-directory\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/james-harrison-vpOeXr5wmR4-unsplash.jpg","articleSection":["Software Engineering"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/linux-delete-directory\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/linux-delete-directory\/","url":"https:\/\/careerkarma.com\/blog\/linux-delete-directory\/","name":"How to Delete a Directory in Linux | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/linux-delete-directory\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/linux-delete-directory\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/james-harrison-vpOeXr5wmR4-unsplash.jpg","datePublished":"2020-11-26T14:13:23+00:00","dateModified":"2023-12-01T12:05:00+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"The Linux rmdir and rm -r commands allow you to delete a directory in Linux. On Career Karma, learn how to use these commands.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/linux-delete-directory\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/linux-delete-directory\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/linux-delete-directory\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/james-harrison-vpOeXr5wmR4-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/james-harrison-vpOeXr5wmR4-unsplash.jpg","width":1020,"height":574},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/linux-delete-directory\/#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":"How to Delete a Directory in Linux"}]},{"@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\/18472","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=18472"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/18472\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/18474"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=18472"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=18472"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=18472"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}