{"id":37185,"date":"2021-10-04T19:00:06","date_gmt":"2021-10-04T19:00:06","guid":{"rendered":"https:\/\/linuxiac.com\/?p=37185"},"modified":"2022-08-27T17:21:51","modified_gmt":"2022-08-27T17:21:51","slug":"delete-files-and-directories-in-linux","status":"publish","type":"post","link":"https:\/\/linuxiac.com\/delete-files-and-directories-in-linux\/","title":{"rendered":"How to Delete Files and Directories in Linux from Command Line"},"content":{"rendered":"\n<p>One of Linux&#8217;s basic file system administration tasks involves creating, modifying, and deleting different types of files and directories. Therefore, knowing some essential tools and concepts for file deletion is handy and can save you time.<\/p>\n\n\n\n<p><strong>Related: <a href=\"https:\/\/linuxiac.com\/basic-linux-commands\/\">20 Basic Linux Commands for Beginners Explained with Examples<\/a><\/strong><\/p>\n\n\n\n<p>This article will show you several ways to delete files and directories in Linux. We will also provide brief information on the various flags and options you can use while deleting&nbsp;<a href=\"https:\/\/linuxiac.com\/linux-file-system-types-explained-which-one-should-you-use\/\" target=\"_blank\" rel=\"noreferrer noopener\">files and directories from your Linux<\/a>&nbsp;system.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-delete-files-using-the-rm-command\">Delete files Using the rm Command<\/h2>\n\n\n\n<p>To delete a file, you need to use the&nbsp;<code>rm<\/code>&nbsp;(remove) command and tell it what file or files you want it to delete. It has the following general syntax:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-1\" data-shcb-language-name=\"CSS\" data-shcb-language-slug=\"css\"><span><code lang=\"bash\" class=\"hljs language-css language-bash\"><span class=\"hljs-selector-tag\">rm<\/span> <span class=\"hljs-selector-attr\">&#91;OPTIONS]<\/span> <span class=\"hljs-selector-tag\">FILENAME<\/span><\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-1\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">CSS<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">css<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>For example, to delete a single file named <code>file.jpg<\/code>, type the following in the command line:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-2\" data-shcb-language-name=\"CSS\" data-shcb-language-slug=\"css\"><span><code lang=\"bash\" class=\"hljs language-css language-bash\"><span class=\"hljs-selector-tag\">rm<\/span> <span class=\"hljs-selector-tag\">file<\/span><span class=\"hljs-selector-class\">.jpg<\/span><\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-2\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">CSS<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">css<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>The <code>rm<\/code>&nbsp;command displays&nbsp;a confirmation&nbsp;dialog for write-protected files. Otherwise, the command will directly delete the file. To make&nbsp;<code>rm<\/code>&nbsp;always prompt before deleting a file, you can use&nbsp;<code>-i<\/code>&nbsp;flag:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-3\" data-shcb-language-name=\"CSS\" data-shcb-language-slug=\"css\"><span><code lang=\"bash\" class=\"hljs language-css language-bash\"><span class=\"hljs-selector-tag\">rm<\/span> <span class=\"hljs-selector-tag\">-i<\/span> <span class=\"hljs-selector-tag\">file<\/span><span class=\"hljs-selector-class\">.jpg<\/span><\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-3\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">CSS<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">css<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>The&nbsp;<code>rm<\/code>&nbsp;command in Linux can also delete more than one file. Bypassing multiple filenames separated by a space as arguments to&nbsp;<code>rm<\/code>, you can delete multiple files:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-4\" data-shcb-language-name=\"CSS\" data-shcb-language-slug=\"css\"><span><code lang=\"bash\" class=\"hljs language-css language-bash\"><span class=\"hljs-selector-tag\">rm<\/span> <span class=\"hljs-selector-tag\">file1<\/span><span class=\"hljs-selector-class\">.jpg<\/span> <span class=\"hljs-selector-tag\">file2<\/span><span class=\"hljs-selector-class\">.jpg<\/span> <span class=\"hljs-selector-tag\">file3<\/span><span class=\"hljs-selector-class\">.jpg<\/span><\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-4\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">CSS<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">css<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>You can use the&nbsp;<code>-f<\/code>&nbsp;(force) flag to delete write-protected files without asking for confirmation:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-5\" data-shcb-language-name=\"CSS\" data-shcb-language-slug=\"css\"><span><code lang=\"bash\" class=\"hljs language-css language-bash\"><span class=\"hljs-selector-tag\">rm<\/span> <span class=\"hljs-selector-tag\">-f<\/span> <span class=\"hljs-selector-tag\">file<\/span><span class=\"hljs-selector-class\">.jpg<\/span><\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-5\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">CSS<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">css<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>In addition, the <code>rm<\/code>&nbsp;command also supports regular expressions. If you want to delete all three files (<code>file1.jpg<\/code>, <code>file2.jpg<\/code>, and <code>file3.jpg<\/code>), you can use:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-6\" data-shcb-language-name=\"CSS\" data-shcb-language-slug=\"css\"><span><code lang=\"bash\" class=\"hljs language-css language-bash\"><span class=\"hljs-selector-tag\">rm<\/span> <span class=\"hljs-selector-tag\">file<\/span>*<span class=\"hljs-selector-class\">.jpg<\/span><\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-6\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">CSS<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">css<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>If you need it,&nbsp;<a href=\"https:\/\/man7.org\/linux\/man-pages\/man1\/rm.1.html\" target=\"_blank\" rel=\"noreferrer noopener\">here&#8217;s the man page<\/a>&nbsp;for the <code>rm<\/code> command.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Delete files Using the unlink Command<\/h2>\n\n\n\n<p>The&nbsp;<code>unlink<\/code>&nbsp;command also deletes a given file. This is another though not so popular, way of deleting a file in Linux.<\/p>\n\n\n\n<p>You can use the&nbsp;<code>unlink<\/code>&nbsp;command to permanently delete a single file named <code>file.jpg<\/code> by typing the following:<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-7\" data-shcb-language-name=\"CSS\" data-shcb-language-slug=\"css\"><span><code lang=\"bash\" class=\"hljs language-css language-bash\"><span class=\"hljs-selector-tag\">unlink<\/span> <span class=\"hljs-selector-tag\">file<\/span><span class=\"hljs-selector-class\">.jpg<\/span><\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-7\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">CSS<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">css<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>You are probably wondering what the difference between <code>rm<\/code> and <code>unlink<\/code> is.<\/p>\n\n\n\n<p>Above all, both commands are wrappers to the same fundamental function, an <code>unlink()<\/code> system call. But the <code>unlink<\/code> command suffers from the following restrictions:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Unable to delete directories.<\/li>\n\n\n\n<li>Unable to recurse.<\/li>\n\n\n\n<li>Can only take one argument at a time.<\/li>\n\n\n\n<li>Has no options other than&nbsp;<code>--help<\/code>&nbsp;and&nbsp;<code>--version<\/code>.<\/li>\n\n\n\n<li>Less sanity checking.<\/li>\n<\/ul>\n\n\n\n<p>For more about the&nbsp;<code>unlink<\/code>&nbsp;command in Linux, consult its&nbsp;<a href=\"https:\/\/man7.org\/linux\/man-pages\/man2\/unlink.2.html\" target=\"_blank\" rel=\"noreferrer noopener\">manual page<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Delete Directories Using the rm Command<\/h2>\n\n\n\n<p>By adding the <code>-r<\/code> (recursive) option to the&nbsp;<code>rm<\/code>&nbsp;command in Linux, you can delete a directory and all its contents (files, subdirectories, etc.).<\/p>\n\n\n\n<p>For example, to&nbsp;remove a directory&nbsp;named <code>myfiles<\/code>, type the following in the command line:<\/p>\n\n\n<pre class=\"wp-block-code\"><span><code lang=\"bash\" class=\"hljs language-bash\">rm -r myfiles\/<\/code><\/span><\/pre>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>The <code>rm<\/code> command would ask you to validate the procedure if the specified directory or a file inside it is write-protected. To&nbsp;remove a directory without confirmation:&nbsp;<\/p>\n\n\n<pre class=\"wp-block-code\"><span><code lang=\"bash\" class=\"hljs language-bash\">rm -rf myfiles\/<\/code><\/span><\/pre>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>To delete multiple directories (for example, myfiles1, myfiles2, and myfiles3), type rm -rf followed by the <a href=\"https:\/\/linuxiac.com\/add-directory-to-path-in-linux\/\">directory names or path<\/a> to directories, separated by a space, as follows:<\/p>\n\n\n<pre class=\"wp-block-code\"><span><code lang=\"bash\" class=\"hljs language-bash\">rm -rf myfiles1\/ myfiles2\/ myfiles3\/<\/code><\/span><\/pre>\n\n\n<h2 class=\"wp-block-heading\">Delete Directories Using the rmdir Command<\/h2>\n\n\n\n<p>Something important to note here is that the <code>rmdir<\/code> command is used when deleting empty directories in Linux. If you need to remove a non-empty directory, use the&nbsp;<code>rm<\/code>&nbsp;command.<\/p>\n\n\n\n<p>If a specified directory is not empty, the output will display an error, as shown below.<\/p>\n\n\n<pre class=\"wp-block-code\" aria-describedby=\"shcb-language-8\" data-shcb-language-name=\"PHP\" data-shcb-language-slug=\"php\"><span><code lang=\"xml\" class=\"hljs language-php language-xml\">rmdir: failed to remove <span class=\"hljs-string\">'myfiles\/'<\/span>: Directory not <span class=\"hljs-keyword\">empty<\/span><\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-8\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">PHP<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">php<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>To remove a single empty directory, type <code>rmdir<\/code> followed by the directory name or path to the directory as follows:<\/p>\n\n\n<pre class=\"wp-block-code\"><span><code lang=\"bash\" class=\"hljs language-bash\">rmdir myfiles\/<\/code><\/span><\/pre>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>To remove multiple directories (for example,&nbsp;<code>myfiles1<\/code>,&nbsp;<code>myfiles2<\/code>, and&nbsp;<code>myfiles3<\/code>), type&nbsp;<code>rmdir<\/code>&nbsp;followed by the directory names or path to directories, separated by a space,  as follows:<\/p>\n\n\n<pre class=\"wp-block-code\"><span><code lang=\"bash\" class=\"hljs language-bash\">rmdir myfiles1\/ myfiles2\/ myfiles3\/<\/code><\/span><\/pre>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>If the command finds content in any listed directories, it will skip it and move on to the next one.<\/p>\n\n\n\n<p>With <code>-p<\/code> options added to the <code>rmdir<\/code> command, each directory argument is treated as a pathname, of which all components will be removed if they are already empty, starting from the last component.<\/p>\n\n\n\n<p>For example, the following command will delete both: the parent <code>myfiles<\/code> directory and its subdirectory <code>subdir<\/code>.<\/p>\n\n\n<pre class=\"wp-block-code\"><span><code lang=\"bash\" class=\"hljs language-bash\">rmdir -p myfiles\/subdir\/<\/code><\/span><\/pre>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>If you need it,&nbsp;<a href=\"https:\/\/man7.org\/linux\/man-pages\/man2\/unlink.2.html\" target=\"_blank\" rel=\"noreferrer noopener\">here\u2019s the man page<\/a>&nbsp;for the&nbsp;<code>unlink<\/code>&nbsp;command.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>By now, you should clearly understand how to delete files and directories in Linux from the command line.<\/p>\n\n\n\n<p>It is important to remember that when you delete a file or directory in Linux using <code>rm<\/code>, <code>unlink<\/code>, and <code>rmdir<\/code>, it is instantly removed instead of moving towards Trash. Therefore, you will need to be careful while using these commands as you will not recover the removed files.<\/p>\n\n\n\n<p>Practice the examples mentioned in this article, and you should be ready.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This guide will teach you how to quickly and easily delete files and directories in Linux using the command line.<\/p>\n","protected":false},"author":10,"featured_media":37188,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8,4417],"tags":[1484,4362,4368,4365],"class_list":["post-37185","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tips","category-linux-knowledge","tag-commands","tag-rm","tag-rmdir","tag-unlink"],"blocksy_meta":{"styles_descriptor":{"styles":{"desktop":"","tablet":"","mobile":""},"google_fonts":[],"version":6},"post_title_panel":"","has_hero_section":"default","526280eab07b475e19152f3f47c1c884":"","hero_section":"type-2","hero_elements":[{"id":"custom_title","enabled":true,"heading_tag":"h1","title":"Home","__id":"q1lVzO8NrJgf8AupXdkaq"},{"id":"custom_description","enabled":false,"description_visibility":{"desktop":true,"tablet":true,"mobile":false},"__id":"Ka_k4K8JiriQ6RdjPQkPS"},{"id":"custom_meta","enabled":true,"meta_elements":[{"id":"author","enabled":true,"label":"By","has_author_avatar":"yes","avatar_size":50,"__id":"dL0Eot8tcERRzy6op6iKU"},{"id":"post_date","enabled":false,"label":"On","date_format_source":"default","date_format":"M j, Y","__id":"IU-cP0dRLse61BGgnk0Vs"},{"id":"updated_date","enabled":true,"label":"Updated","date_format_source":"default","date_format":"M j, Y","__id":"Z5zwr3Pws3wSaQuqB4R1P"},{"id":"categories","enabled":false,"label":"In","style":"simple","__id":"G1214ZfAYjMMoVmTw-RfM"},{"id":"comments","enabled":true,"__id":"Vo-5C667lvYv-OwB-C_-E"}],"page_meta_elements":{"joined":true,"articles_count":true,"comments":true},"__id":"6S9PmVzzzyNNi5EI8I5ce","meta_type":"label","meta_divider":"circle"},{"id":"breadcrumbs","enabled":false,"__id":"aB2K70kN45FcjEA8EhkFk"}],"cdd83c1919573f527b1a09ab14d50257":"","hero_alignment1":"CT_CSS_SKIP_RULE","hero_margin":40,"hero_alignment2":"center","hero_vertical_alignment":"center","18b2daed168940982666b60672ae729f":"","hero_structure":"normal","199f633610a5c7148d028b922ab95230":"","page_title_bg_type":"custom_image","custom_hero_background":{"attachment_id":43178,"url":"https:\/\/linuxiac.com\/wp-content\/uploads\/2021\/10\/delete-files-and-directories-header-1024x216.png"},"parallax":{"desktop":false,"tablet":false,"mobile":false},"53f8e1f3fb45e2195fecce4190e6dfc1":"","hero_height":"250px","pageTitleFont":{"family":"Default","variation":"Default","size":{"desktop":"2.8em","tablet":"2.8em","mobile":"2.8em","__changed":[]},"line-height":"CT_CSS_SKIP_RULE","letter-spacing":"CT_CSS_SKIP_RULE","text-transform":"CT_CSS_SKIP_RULE","text-decoration":"CT_CSS_SKIP_RULE"},"pageTitleFontColor":{"default":{"color":"CT_CSS_SKIP_RULEDEFAULT"}},"pageMetaFont":{"family":"Default","variation":"n6","size":"12px","line-height":"1.3","letter-spacing":"CT_CSS_SKIP_RULE","text-transform":"uppercase","text-decoration":"CT_CSS_SKIP_RULE"},"pageMetaFontColor":{"default":{"color":"CT_CSS_SKIP_RULEDEFAULT"},"hover":{"color":"CT_CSS_SKIP_RULEDEFAULT"}},"page_meta_button_type_font_colors":{"default":{"color":"CT_CSS_SKIP_RULEDEFAULT"},"hover":{"color":"CT_CSS_SKIP_RULEDEFAULT"}},"page_meta_button_type_background_colors":{"default":{"color":"CT_CSS_SKIP_RULEDEFAULT"},"hover":{"color":"CT_CSS_SKIP_RULEDEFAULT"}},"pageExcerptFont":{"family":"Default","variation":"Default","size":"CT_CSS_SKIP_RULE","line-height":"CT_CSS_SKIP_RULE","letter-spacing":"CT_CSS_SKIP_RULE","text-transform":"CT_CSS_SKIP_RULE","text-decoration":"CT_CSS_SKIP_RULE"},"pageExcerptColor":{"default":{"color":"CT_CSS_SKIP_RULEDEFAULT"}},"breadcrumbsFont":{"family":"Default","variation":"Default","size":"CT_CSS_SKIP_RULE","line-height":"CT_CSS_SKIP_RULE","letter-spacing":"CT_CSS_SKIP_RULE","text-transform":"CT_CSS_SKIP_RULE","text-decoration":"CT_CSS_SKIP_RULE"},"breadcrumbsFontColor":{"default":{"color":"CT_CSS_SKIP_RULEDEFAULT"},"initial":{"color":"CT_CSS_SKIP_RULEDEFAULT"},"hover":{"color":"CT_CSS_SKIP_RULEDEFAULT"}},"pageTitleOverlay":{"background_type":"color","background_pattern":"type-1","background_image":{"attachment_id":null,"x":0,"y":0},"gradient":"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)","background_repeat":"repeat","background_size":"auto","background_attachment":"scroll","patternColor":{"default":{"color":"#e5e7ea"}},"overlayColor":{"default":{"color":"CT_CSS_SKIP_RULE"}},"backgroundColor":{"default":{"color":"CT_CSS_SKIP_RULE"}}},"pageTitleBackground":{"background_type":"color","background_pattern":"type-1","background_image":{"attachment_id":null,"x":0,"y":0},"gradient":"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)","background_repeat":"repeat","background_size":"auto","background_attachment":"scroll","patternColor":{"default":{"color":"#e5e7ea"}},"overlayColor":{"default":{"color":"CT_CSS_SKIP_RULE"}},"backgroundColor":{"default":{"color":"var(--theme-palette-color-6)"}}},"pageTitlePadding":{"top":"50px","bottom":"50px","left":"auto","right":"auto","linked":true},"759cde4e1f2b83f1e893db3cde581cb5":"","page_structure_type":"default","712e15052d52119319bfcf62e0b6814f":"","content_style_source":"inherit","content_style":"wide","2a5ee7406793305b7ba585af55c6b00f":"","vertical_spacing_source":"inherit","content_area_spacing":"both","background":{"background_type":"color","background_pattern":"type-1","background_image":{"attachment_id":null,"x":0,"y":0},"gradient":"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)","background_repeat":"repeat","background_size":"auto","background_attachment":"scroll","patternColor":{"default":{"color":"#e5e7ea"}},"overlayColor":{"default":{"color":"CT_CSS_SKIP_RULE"}},"backgroundColor":{"default":{"color":"CT_CSS_SKIP_RULE"}}},"content_background":{"background_type":"color","background_pattern":"type-1","background_image":{"attachment_id":null,"x":0,"y":0},"gradient":"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)","background_repeat":"repeat","background_size":"auto","background_attachment":"scroll","patternColor":{"default":{"color":"#e5e7ea"}},"overlayColor":{"default":{"color":"CT_CSS_SKIP_RULE"}},"backgroundColor":{"default":{"color":"var(--theme-palette-color-8)"}}},"content_boxed_shadow":{"inherit":false,"blur":18,"spread":-6,"v_offset":12,"h_offset":0,"inset":false,"enable":true,"color":{"color":"rgba(34, 56, 101, 0.04)"}},"boxed_content_spacing":{"desktop":{"top":"40px","bottom":"40px","left":"40px","right":"40px","linked":true},"tablet":{"top":"35px","bottom":"35px","left":"35px","right":"35px","linked":true},"mobile":{"top":"20px","bottom":"20px","left":"20px","right":"20px","linked":true}},"content_boxed_radius":{"top":"3px","bottom":"3px","left":"3px","right":"3px","linked":true},"fa16f4b8bcb95d8d0fa22c0b6a90bc19":"","disable_featured_image":"no","disable_post_tags":"no","disable_share_box":"no","disable_author_box":"no","disable_posts_navigation":"no","disable_subscribe_form":"no","39dd34779ee5b2e9284bad607ef193a9":"","disable_related_posts":"no","disable_header":"no","disable_footer":"no","31de5cfc3eaf700f00c859d3c850de78":"","header_footer_scripts_panel":"","header_scripts":"","dca68ba034e761fa2512f866d5370e79":"","header_after_body_scripts":"","c8cb34b3b2d517d77645bf619b287152":"","footer_scripts":""},"_links":{"self":[{"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/posts\/37185","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/users\/10"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/comments?post=37185"}],"version-history":[{"count":0,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/posts\/37185\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/media\/37188"}],"wp:attachment":[{"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/media?parent=37185"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/categories?post=37185"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxiac.com\/wp-json\/wp\/v2\/tags?post=37185"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}