{"id":28609,"date":"2024-09-27T11:45:46","date_gmt":"2024-09-27T06:15:46","guid":{"rendered":"https:\/\/www.wpoven.com\/blog\/?p=28609"},"modified":"2024-09-27T11:45:49","modified_gmt":"2024-09-27T06:15:49","slug":"how-to-remove-files-and-folders-using-linux-command-line","status":"publish","type":"post","link":"https:\/\/www.wpoven.com\/blog\/how-to-remove-files-and-folders-using-linux-command-line\/","title":{"rendered":"How to Remove Files and Folders using Linux Command Line"},"content":{"rendered":"\n<p class=\"justify\">If you&#8217;re managing servers, especially Virtual Private Servers (VPS), learning Linux commands is important because they help you manage the server more effectively.&nbsp;<\/p>\n\n\n\n<p class=\"justify\">While you can use a control panel with buttons and menus, Linux commands are quicker and more powerful for tasks like deleting files and organizing data.<\/p>\n\n\n\n<p class=\"justify\">Therefore, in this post, we will discuss How to use Linux commands to delete files and directories.<\/p>\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_13ee018b-8004-4a6d-935b-2ae8e0654de8\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_13ee018b-8004-4a6d-935b-2ae8e0654de8\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<div class=\"wp-block-group tip is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<h2 class=\"wp-block-heading myh2\">How to Remove Files and Folders in Linux with WPOven VPS<\/h2>\n\n\n\n<p class=\"justify\">If you&#8217;re using WPOven&#8217;s VPS, you have full control over the server, so you can easily manage files and perform tasks using SSH, without restrictions.<\/p>\n\n\n\n<p class=\"justify\">Wondering How? We have a dedicated blog in this regard you must read: <a href=\"https:\/\/www.wpoven.com\/blog\/how-to-use-ssh\/\"><strong>How To Use SSH To Connect To Your Server Securely<\/strong><\/a><\/p>\n<\/div><\/div>\n\n\n\n<div style=\"height:10px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p class=\"justify\"><strong>In case you want to generate an SSH key, utilize our <\/strong><a href=\"https:\/\/www.wpoven.com\/tools\/create-ssh-key\"><strong>Free SSH key generator tool<\/strong><\/a><strong>.<\/strong><\/p>\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_13ee018b-8004-4a6d-935b-2ae8e0654de8\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n<div class=\"wp-block-group fre-pros-box is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<h2 class=\"wp-block-heading myh2\">How to remove a directory in Linux? (For all users)<\/h2>\n\n\n\n<p class=\"justify\">To permanently delete a folder in Linux, you can use two commands: <strong>rmdir<\/strong> or <strong>rm<\/strong>.<\/p>\n\n\n\n<ul>\n<li><strong>rmdir<\/strong> or <strong>rm -d<\/strong> is for deleting empty folders.<\/li>\n\n\n\n<li><strong>rm -r<\/strong> is for deleting folders that have files inside them.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Before Deleting:<\/strong><\/h3>\n\n\n\n<ul class=\"justify\">\n<li><strong>Know the folder name<\/strong>: You need to know the exact name of the folder you want to delete.<\/li>\n\n\n\n<li><strong>Check your location<\/strong>: Use the command <strong>pwd<\/strong> to see where you are in the system, and <strong>ls<\/strong> to see a list of files and folders.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Command Options:<\/strong><\/h3>\n\n\n\n<ul class=\"justify\">\n<li><strong>rm -d<\/strong>: Deletes an empty folder.<\/li>\n\n\n\n<li><strong>rm -r<\/strong>: Deletes a folder and everything inside it.<\/li>\n\n\n\n<li><strong>rm -f<\/strong>: Deletes a protected file without asking.<\/li>\n\n\n\n<li><strong>rm -rf<\/strong>: Deletes a folder and everything inside it without asking.<\/li>\n\n\n\n<li><strong>rm -i<\/strong>: Asks for confirmation before deleting each item.<\/li>\n\n\n\n<li><strong>rm -I<\/strong>: Asks for confirmation only once before deleting more than three files.<\/li>\n\n\n\n<li><strong>rm *<\/strong>: Deletes multiple files.<\/li>\n\n\n\n<li><strong>rm ?<\/strong>: Deletes files that match a single character.<\/li>\n\n\n\n<li><strong>rmdir -p<\/strong>: Deletes an empty folder and its parent folder.<\/li>\n\n\n\n<li><strong>rmdir -v<\/strong>: Shows a message when a folder is deleted.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Using Commands:<\/strong><\/h3>\n\n\n\n<p class=\"justify\">To use these commands, connect to your server using SSH. You can do this with a special program or the terminal on your computer.<\/p>\n<\/div><\/div>\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_13ee018b-8004-4a6d-935b-2ae8e0654de8\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n<p class=\"justify round has-background\" style=\"background-color:#fff6dd\"><strong>Note:<\/strong> Always make sure you have a backup before deleting anything, just in case you accidentally remove something important.<\/p>\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_13ee018b-8004-4a6d-935b-2ae8e0654de8\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n<h2 class=\"wp-block-heading\">How to Delete an Empty Folder in Linux<\/h2>\n\n\n\n<p class=\"justify\">In Linux, when you delete files or folders, they don\u2019t go to a recycle bin or trash like on some other systems. This means that if you accidentally delete something, you can\u2019t get it back unless you have a backup saved somewhere.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Using the rmdir Command<\/h4>\n\n\n\n<p class=\"justify\">To help avoid such mistakes, you can use the <strong>rmdir<\/strong> command to delete only empty folders. If you try to delete a folder that has files in it, you\u2019ll see this error message:<\/p>\n\n\n\n<p>**&#8221;rmdir: failed to remove \u2018Directory\u2019: Directory not empty.&#8221;**<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">How to Use the rmdir Command<\/h4>\n\n\n\n<p>&#8211; The basic way to use the command looks like this:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&#8220;`<\/p>\n\n\n\n<p>&nbsp;&nbsp;rmdir DirectoryName<\/p>\n\n\n\n<p>&nbsp;&nbsp;&#8220;`<\/p>\n\n\n\n<p>&nbsp;&nbsp;For example, to delete a folder called **Simple-Directory**, you would type:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&#8220;`<\/p>\n\n\n\n<p>&nbsp;&nbsp;rmdir Simple-Directory<\/p>\n\n\n\n<p>&nbsp;&nbsp;&#8220;`<\/p>\n\n\n\n<p>&#8211; You can also delete multiple empty folders at once by listing them:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&#8220;`<\/p>\n\n\n\n<p>&nbsp;&nbsp;rmdir Directory_1 Directory_2 Directory_3<\/p>\n\n\n\n<p>&nbsp;&nbsp;&#8220;`<\/p>\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_13ee018b-8004-4a6d-935b-2ae8e0654de8\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/www.wpoven.com\/\" target=\"_blank\" rel=\"noreferrer noopener\"><img decoding=\"async\" width=\"1024\" height=\"277\" src=\"https:\/\/www.wpoven.com\/blog\/wp-content\/uploads\/2024\/07\/Fast-Hosting.png\" alt=\"WPOven\" class=\"wp-image-27033\" srcset=\"https:\/\/www.wpoven.com\/blog\/wp-content\/uploads\/2024\/07\/Fast-Hosting.png 1024w, https:\/\/www.wpoven.com\/blog\/wp-content\/uploads\/2024\/07\/Fast-Hosting-300x81.png 300w, https:\/\/www.wpoven.com\/blog\/wp-content\/uploads\/2024\/07\/Fast-Hosting-768x208.png 768w\" sizes=\"(max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px\" title=\"\"><\/a><\/figure>\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_13ee018b-8004-4a6d-935b-2ae8e0654de8\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n<h4 class=\"wp-block-heading\">Extra Options for rmdir<\/h4>\n\n\n\n<p class=\"justify\">&#8211; **-p**: This option allows you to delete a subfolder and its parent folder if both are empty. For example:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&#8220;`<\/p>\n\n\n\n<p>&nbsp;&nbsp;rmdir -p \/Directory\/SubDirectory<\/p>\n\n\n\n<p>&nbsp;&nbsp;&#8220;`<\/p>\n\n\n\n<p class=\"justify\">&nbsp;&nbsp;This will delete the **SubDirectory** and also remove its parent **Directory** if it\u2019s empty.<\/p>\n\n\n\n<p class=\"justify\">&#8211; **-v**: This option gives you a confirmation message that the folder has been successfully deleted. For example:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&#8220;`<\/p>\n\n\n\n<p>&nbsp;&nbsp;rmdir -v Simple-Directory<\/p>\n\n\n\n<p>&nbsp;&nbsp;&#8220;`<\/p>\n\n\n\n<p class=\"justify\">&nbsp;&nbsp;The message will say something like **&#8221;rmdir: removing directory, \u2018Simple-Directory\u2019&#8221;** to confirm the deletion.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How to Delete a Folder with Files in It<\/h3>\n\n\n\n<p class=\"justify\">To delete a folder that has files in it, you use the **rm** command. While this command is mainly for deleting files, you can add options to also remove folders. Here\u2019s how to use it:<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Basic Command Syntax<\/h4>\n\n\n\n<p>The basic way to write the command is:<\/p>\n\n\n\n<p>&#8220;`<\/p>\n\n\n\n<p>rm option FileOrFolderName<\/p>\n\n\n\n<p>&#8220;`<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Using the -r Option<\/h4>\n\n\n\n<p class=\"justify\">&#8211; To delete a folder and everything inside it (including all files and subfolders), you use the **-r** option, which stands for &#8220;recursive.&#8221; For example:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&#8220;`<\/p>\n\n\n\n<p>&nbsp;&nbsp;rm -r Simple-Directory<\/p>\n\n\n\n<p>&nbsp;&nbsp;&#8220;`<\/p>\n\n\n\n<p class=\"justify\">&nbsp;&nbsp;This command will delete **Simple-Directory** and everything inside it.<\/p>\n\n\n\n<p class=\"justify\">**Warning**: Be careful when using this command! Deleting a folder with **rm -r** will also delete all its contents. You can only get them back if you have a backup.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Confirming Deletion<\/h4>\n\n\n\n<p class=\"justify\">&#8211; If the folder you\u2019re trying to delete is write-protected (meaning it has some protection against deletion), the system will ask you to confirm before deleting anything.<\/p>\n\n\n\n<p class=\"justify\">&#8211; If you want to delete a folder without being asked for confirmation, you can use the **-rf** option:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&#8220;`<\/p>\n\n\n\n<p>&nbsp;&nbsp;rm -rf Simple-Directory<\/p>\n\n\n\n<p>&nbsp;&nbsp;&#8220;`<\/p>\n\n\n\n<p>&nbsp;&nbsp;This will delete the folder and all its contents without asking you first.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Deleting Empty Folders<\/h4>\n\n\n\n<p class=\"justify\">&#8211; You can also delete empty folders using the **rm** command with the **-d** option:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&#8220;`<\/p>\n\n\n\n<p>&nbsp;&nbsp;rm -d Simple-Directory<\/p>\n\n\n\n<p>&nbsp;&nbsp;&#8220;`<\/p>\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_13ee018b-8004-4a6d-935b-2ae8e0654de8\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.wpoven.com\/dedicated-hosting\/\" target=\"_blank\" rel=\"noreferrer noopener\"><img decoding=\"async\" width=\"1024\" height=\"137\" src=\"https:\/\/www.wpoven.com\/blog\/wp-content\/uploads\/2024\/03\/wpoven-dedicated-hosting-1024x137.png\" alt=\"WPOven Dedicated Hosting\" class=\"wp-image-25538\" srcset=\"https:\/\/www.wpoven.com\/blog\/wp-content\/uploads\/2024\/03\/wpoven-dedicated-hosting-1024x137.png 1024w, https:\/\/www.wpoven.com\/blog\/wp-content\/uploads\/2024\/03\/wpoven-dedicated-hosting-300x40.png 300w, https:\/\/www.wpoven.com\/blog\/wp-content\/uploads\/2024\/03\/wpoven-dedicated-hosting-768x102.png 768w, https:\/\/www.wpoven.com\/blog\/wp-content\/uploads\/2024\/03\/wpoven-dedicated-hosting-1536x205.png 1536w, https:\/\/www.wpoven.com\/blog\/wp-content\/uploads\/2024\/03\/wpoven-dedicated-hosting.png 1919w\" sizes=\"(max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 543px, 580px\" title=\"\"><\/a><\/figure>\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_13ee018b-8004-4a6d-935b-2ae8e0654de8\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n<h4 class=\"wp-block-heading\">Deleting Multiple Folders<\/h4>\n\n\n\n<p class=\"justify\">&#8211; Similar to the **rmdir** command, you can delete multiple folders at once using **rm** by listing them all:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&#8220;`<\/p>\n\n\n\n<p>&nbsp;&nbsp;rm -r Directory_1 Directory_2 Directory_3<\/p>\n\n\n\n<p>&nbsp;&nbsp;&#8220;`<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How to Delete a File in Linux using rm command<\/h3>\n\n\n\n<p class=\"justify\">If you want to remove a specific file instead of deleting an entire folder, you can use the **rm** command. This method is safer because it helps avoid accidentally deleting everything in a folder.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Deleting a Single File<\/h4>\n\n\n\n<p class=\"justify\">To delete one file in the current directory, you just type:<\/p>\n\n\n\n<p>&#8220;`<\/p>\n\n\n\n<p>rm file.txt<\/p>\n\n\n\n<p>&#8220;`<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Deleting Multiple Files<\/h4>\n\n\n\n<p>You can also delete several files at once by listing their names:<\/p>\n\n\n\n<p>&#8220;`<\/p>\n\n\n\n<p>rm file1.txt file2.txt file3.txt<\/p>\n\n\n\n<p>&#8220;`<\/p>\n\n\n\n<p class=\"justify\">**Note**: These commands only work if you are in the folder where those files are located. If the file is in another folder, you can specify the path:<\/p>\n\n\n\n<p>&#8220;`<\/p>\n\n\n\n<p>rm dir\/subdir\/file.txt<\/p>\n\n\n\n<p>&#8220;`<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Adding Confirmation to Prevent Accidental Deletion<\/h4>\n\n\n\n<p class=\"justify\">Since this command permanently deletes files, you can add the **-i** option to ask for confirmation before deleting:<\/p>\n\n\n\n<p>&#8220;`<\/p>\n\n\n\n<p>rm -i file1.txt file2.txt file3.txt<\/p>\n\n\n\n<p>&#8220;`<\/p>\n\n\n\n<p class=\"justify\">When you run this command, the system will ask if you want to delete each file. Type **Y** and press Enter to delete or **N** to cancel.<\/p>\n\n\n\n<p class=\"justify\">If you want to confirm only once when deleting more than three files, use the **-I** option:<\/p>\n\n\n\n<p>&#8220;`<\/p>\n\n\n\n<p>rm -I file1.txt file2.txt file3.txt<\/p>\n\n\n\n<p>&#8220;`<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Skipping Confirmation<\/h4>\n\n\n\n<p class=\"justify\">If you want to delete a file without being asked for confirmation, use the **-f** option:<\/p>\n\n\n\n<p>&#8220;`<\/p>\n\n\n\n<p>rm -f file.txt<\/p>\n\n\n\n<p>&#8220;`<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Using Wildcards to Delete Multiple Files<\/h4>\n\n\n\n<p>You can use wildcards to delete many files at once:<\/p>\n\n\n\n<p>&#8211; **Asterisk (*)**: Represents multiple characters. For example, to delete all text files:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&#8220;`<\/p>\n\n\n\n<p>&nbsp;&nbsp;rm *.txt<\/p>\n\n\n\n<p>&nbsp;&nbsp;&#8220;`<\/p>\n\n\n\n<p>&nbsp;&nbsp;This command will remove all files with the **.txt** extension in the current directory.<\/p>\n\n\n\n<p class=\"justify\">&#8211; **Question Mark (?)**: Represents a single character. You can use it with the asterisk to delete files with specific extensions. For example:<\/p>\n\n\n\n<p>&nbsp;&nbsp;&#8220;`<\/p>\n\n\n\n<p>&nbsp;&nbsp;rm *.?<\/p>\n\n\n\n<p>&nbsp;&nbsp;&#8220;`<\/p>\n\n\n\n<p>&nbsp;&nbsp;This command will delete files that have a single-character extension.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Warning About Wildcards<\/h4>\n\n\n\n<p class=\"justify\">Be very careful when using wildcards because you might accidentally delete important files. Before running a command with wildcards, use the **ls** command to see what files are in the directory to ensure you aren\u2019t deleting anything important.<\/p>\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_13ee018b-8004-4a6d-935b-2ae8e0654de8\"><hr class=\"ub_divider\" ><\/hr><\/div>\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p class=\"justify\">Deleting or removing files and folders using Linux commands is not a big deal; all you have to do is understand the basic functionality of the <strong>rm<\/strong> and <strong>rmdir<\/strong> commands first. The <strong>rm<\/strong> command allows you to delete files and folders, while the <strong>rmdir<\/strong> command allows you to delete only empty folders.<\/p>\n\n\n\n<p class=\"justify\">This is not the end; if you are familiar with other essential Linux commands, there are many things you can do with files.<\/p>\n\n\n\n<p class=\"justify\">If you have any queries or suggestions regarding this topic, please let us know in the comment section below.<\/p>\n\n\n<div class=\"wp-block-ub-divider ub-divider-orientation-horizontal\" id=\"ub_divider_13ee018b-8004-4a6d-935b-2ae8e0654de8\"><hr class=\"ub_divider\" ><\/hr><\/div>","protected":false},"excerpt":{"rendered":"<p>If you&#8217;re managing servers, especially Virtual Private Servers (VPS), learning Linux commands is important because they help you manage the server more effectively.&nbsp;<\/p>\n<p>While you can use a control panel with buttons and menus, Linux commands are quicker and more powerful for tasks like deleting files and organizing data.<\/p>\n<p>Therefore, in this post, we will discuss How to use Linux commands to delete files and directories.<\/p>\n<p>How to Remove Files and Folders in Linux with WPOven VPS<\/p>\n<p>If you&#8217;re using WPOven&#8217;s VPS, &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/www.wpoven.com\/blog\/how-to-remove-files-and-folders-using-linux-command-line\/\" class=\"more-link\">Read More <i class=\"fa fa-angle-double-right\" aria-hidden=\"true\"><\/i><span class=\"screen-reader-text\"> &#8220;How to Remove Files and Folders using Linux Command Line&#8221;<\/span><\/a><\/p>\n","protected":false},"author":28,"featured_media":28622,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"ub_ctt_via":"","footnotes":""},"categories":[1],"acf":[],"featured_image_src":"https:\/\/www.wpoven.com\/blog\/wp-content\/uploads\/2024\/09\/remove-files-and-folders-using-Linux.png","author_info":{"display_name":"Rahul","author_link":"https:\/\/www.wpoven.com\/blog\/author\/rahul\/"},"_links":{"self":[{"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/posts\/28609"}],"collection":[{"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/users\/28"}],"replies":[{"embeddable":true,"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/comments?post=28609"}],"version-history":[{"count":2,"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/posts\/28609\/revisions"}],"predecessor-version":[{"id":28639,"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/posts\/28609\/revisions\/28639"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/media\/28622"}],"wp:attachment":[{"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/media?parent=28609"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.wpoven.com\/blog\/wp-json\/wp\/v2\/categories?post=28609"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}