{"id":6433,"date":"2023-12-14T10:22:29","date_gmt":"2023-12-14T17:22:29","guid":{"rendered":"https:\/\/ioflood.com\/blog\/?p=6433"},"modified":"2023-12-14T10:28:31","modified_gmt":"2023-12-14T17:28:31","slug":"mkdir-linux-command","status":"publish","type":"post","link":"https:\/\/ioflood.com\/blog\/mkdir-linux-command\/","title":{"rendered":"mkdir Command | How to Create Directories in Linux"},"content":{"rendered":"<div class=\"wp-block-image\">\n<figure class=\"alignright size-full is-resized\"><img decoding=\"async\" src=\"https:\/\/ioflood.com\/blog\/wp-content\/uploads\/2023\/12\/Digital-illustration-of-mkdir-command-in-a-Linux-interface-emphasizing-directory-creation-and-system-organization-300x300.jpg\" alt=\"Digital illustration of mkdir command in a Linux interface emphasizing directory creation and system organization\" width=\"300\" height=\"300\" title=\"\"><\/figure>\n<\/div>\n<p>Are you finding it challenging to create directories in your Linux environment? You&#8217;re not alone. Many users, especially beginners, grapple with this task, but there&#8217;s a command that can make this process a breeze. Think of the &#8216;mkdir&#8217; command in Linux as a skilled architect, capable of constructing directories with just a simple command. These directories can be the foundation of your file organization, providing a structured and clean environment for your files and folders.<\/p>\n<p><strong>This guide will walk you through the ins and outs of the mkdir command in Linux<\/strong>, from basic usage to advanced options. We\u2019ll explore mkdir&#8217;s core functionality, delve into its advanced features, and even discuss common issues and their solutions.<\/p>\n<p>So, let&#8217;s dive in and start mastering the mkdir command in Linux!<\/p>\n<h2>TL;DR: How Do I Use the mkdir Command in Linux?<\/h2>\n<blockquote><p>\n  To create a directory in Linux, you use the <code>mkdir<\/code> command followed by the name of the directory you wish to create, the basic syntax being, <code>mkdir [options] path\/to\/directory<\/code>.\n<\/p><\/blockquote>\n<p>Here&#8217;s a simple example:<\/p>\n<pre><code class=\"language-bash line-numbers\">mkdir my_new_directory\nls\n\n# Output:\n# my_new_directory\n<\/code><\/pre>\n<p>In this example, we use the <code>mkdir<\/code> command to create a new directory named &#8216;my_new_directory&#8217;. The <code>ls<\/code> command is then used to list the contents of the current directory, showing that &#8216;my_new_directory&#8217; has indeed been created.<\/p>\n<blockquote><p>\n  This is just the basic usage of the mkdir command in Linux. There&#8217;s much more to learn about creating directories, managing file systems, and advanced usage scenarios. So, continue reading for a more comprehensive guide.\n<\/p><\/blockquote>\n<h2>The Basics of mkdir Command<\/h2>\n<p>The mkdir command in Linux is a fundamental command used for creating directories. &#8216;mkdir&#8217; is short for &#8216;make directories&#8217;. This command allows you to create a new directory or multiple directories at once. Here&#8217;s how it works:<\/p>\n<pre><code class=\"language-bash line-numbers\">mkdir directory_name\n<\/code><\/pre>\n<p>In the command above, <code>directory_name<\/code> is the name of the new directory you wish to create. Here&#8217;s an example:<\/p>\n<pre><code class=\"language-bash line-numbers\">mkdir LinuxGuide\nls\n\n# Output:\n# LinuxGuide\n<\/code><\/pre>\n<p>In this example, we created a new directory called &#8216;LinuxGuide&#8217;. We then used the <code>ls<\/code> command to list the contents of the current directory, which now includes &#8216;LinuxGuide&#8217;.<\/p>\n<p>Creating directories is a crucial aspect of file management in Linux. Directories help keep your files organized and easy to locate, especially when dealing with large volumes of files. They also form the basis of the hierarchical file system in Linux, where directories can contain subdirectories, creating a tree-like structure.<\/p>\n<p>In the next section, we&#8217;ll explore more advanced uses of the mkdir command, where you can create nested directories in a single command.<\/p>\n<h2>Advanced Usage of the mkdir Command<\/h2>\n<p>As you become more comfortable with the basic usage of the <code>mkdir<\/code> command, you can start exploring its more advanced features. These include creating nested directories in a single command and setting permissions during directory creation.<\/p>\n<p>Before we get started, let&#8217;s familiarize ourselves with some of the command-line options or flags that can modify the behavior of the <code>mkdir<\/code> command. Here&#8217;s a quick reference table of some of the most commonly used <code>mkdir<\/code> options:<\/p>\n<table>\n<thead>\n<tr>\n<th>Option<\/th>\n<th>Description<\/th>\n<th>Example<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><code>-p<\/code><\/td>\n<td>Makes parent directories as needed<\/td>\n<td><code>mkdir -p dir1\/dir2\/dir3<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>-v<\/code><\/td>\n<td>Print a message for each created directory<\/td>\n<td><code>mkdir -v dir<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>-m<\/code><\/td>\n<td>Set file mode (as in chmod)<\/td>\n<td><code>mkdir -m 755 dir<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>--help<\/code><\/td>\n<td>Display help information and exit<\/td>\n<td><code>mkdir --help<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>--version<\/code><\/td>\n<td>Output version information and exit<\/td>\n<td><code>mkdir --version<\/code><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Now that we&#8217;ve covered that, let\u2019s delve into these features in more detail.<\/p>\n<h3>Creating Nested Directories<\/h3>\n<p>One of the most powerful features of the <code>mkdir<\/code> command is the ability to create nested directories in a single command using the <code>-p<\/code> option. This is particularly useful when you want to create a directory structure in one go.<\/p>\n<p>Here&#8217;s an example:<\/p>\n<pre><code class=\"language-bash line-numbers\">mkdir -p LinuxGuide\/Commands\/mkdir\nls -R LinuxGuide\n\n# Output:\n# LinuxGuide:\n# Commands\n\n# LinuxGuide\/Commands:\n# mkdir\n<\/code><\/pre>\n<p>In this example, we&#8217;ve created a directory named &#8216;LinuxGuide&#8217;, with a subdirectory &#8216;Commands&#8217;, and a sub-subdirectory &#8216;mkdir&#8217;. The <code>ls -R<\/code> command is used to list the directory structure recursively.<\/p>\n<h3>Verbose Mode<\/h3>\n<p>The <code>-v<\/code> (verbose) option is useful when you want to get a confirmation of the directories being created. Here&#8217;s an example:<\/p>\n<pre><code class=\"language-bash line-numbers\">mkdir -pv LinuxGuide\/Commands\/mkdir\n\n# Output:\n# mkdir: created directory 'LinuxGuide'\n# mkdir: created directory 'LinuxGuide\/Commands'\n# mkdir: created directory 'LinuxGuide\/Commands\/mkdir'\n<\/code><\/pre>\n<p>In this example, the <code>-p<\/code> option is used along with <code>-v<\/code> to create nested directories and print a message for each created directory.<\/p>\n<h3>Setting Permissions<\/h3>\n<p>The <code>-m<\/code> option allows you to set permissions (as in chmod) at the time of directory creation. Here&#8217;s an example:<\/p>\n<pre><code class=\"language-bash line-numbers\">mkdir -m 755 LinuxGuide\nls -ld LinuxGuide\n\n# Output:\n# drwxr-xr-x 2 user group 4096 Jan 1 00:00 LinuxGuide\n<\/code><\/pre>\n<p>In this example, we&#8217;ve created a directory with read, write, and execute permissions for the owner, and read and execute permissions for the group and others.<\/p>\n<p>With these advanced features, the <code>mkdir<\/code> command becomes a powerful tool for managing your file system in Linux.<\/p>\n<h2>Alternative Methods for Directory Creation<\/h2>\n<p>While the <code>mkdir<\/code> command is the go-to command for creating directories in Linux, there are alternative approaches. These methods can be useful in certain scenarios, and understanding them can provide you with more flexibility in managing your Linux file system.<\/p>\n<h3>Using the touch Command<\/h3>\n<p>The <code>touch<\/code> command, typically used to create empty files, can also be used in conjunction with the <code>mkdir<\/code> command to create directories. Here&#8217;s an example:<\/p>\n<pre><code class=\"language-bash line-numbers\">mkdir new_directory &amp;&amp; touch new_directory\/new_file.txt\nls -l new_directory\n\n# Output:\n# -rw-r--r-- 1 user group 0 Jan 1 00:00 new_file.txt\n<\/code><\/pre>\n<p>In this example, we first create a new directory &#8216;new_directory&#8217; using the <code>mkdir<\/code> command. We then use the <code>touch<\/code> command to create an empty file &#8216;new_file.txt&#8217; inside &#8216;new_directory&#8217;. The <code>ls -l<\/code> command is used to list the contents of &#8216;new_directory&#8217;, showing that &#8216;new_file.txt&#8217; has been created.<\/p>\n<h3>Using the > Operator<\/h3>\n<p>In Linux, the &#8216;>&#8217; operator can be used to create a file. However, it&#8217;s important to note that this operator can&#8217;t create directories. Here&#8217;s an example of how it works:<\/p>\n<pre><code class=\"language-bash line-numbers\">echo 'Hello, Linux!' &gt; new_file.txt\nls\n\n# Output:\n# new_file.txt\n<\/code><\/pre>\n<p>In this example, we use the <code>echo<\/code> command to print &#8216;Hello, Linux!&#8217;, and the &#8216;>&#8217; operator to redirect this output to &#8216;new_file.txt&#8217;, effectively creating the file.<\/p>\n<p>Here&#8217;s a quick comparison table of the methods discussed:<\/p>\n<table>\n<thead>\n<tr>\n<th>Method<\/th>\n<th>Use Case<\/th>\n<th>Example<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><code>mkdir<\/code><\/td>\n<td>Creating directories<\/td>\n<td><code>mkdir new_directory<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>touch<\/code><\/td>\n<td>Creating empty files and directories<\/td>\n<td><code>mkdir new_directory &amp;&amp; touch new_directory\/new_file.txt<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>&gt;<\/code><\/td>\n<td>Creating files<\/td>\n<td><code>echo 'Hello, Linux!' &gt; new_file.txt<\/code><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>As you can see, while the <code>mkdir<\/code> command is your primary tool for creating directories in Linux, understanding alternative methods can provide you with more flexibility and options in managing your file system.<\/p>\n<h2>Solving Issues with mkdir Command<\/h2>\n<p>As with any command in Linux, you might encounter some issues while using the <code>mkdir<\/code> command. Don&#8217;t worry, these are common and usually easy to resolve. Let&#8217;s discuss some of these potential pitfalls and how to navigate them.<\/p>\n<h3>Permission Denied Errors<\/h3>\n<p>One of the most common issues you might encounter when using the <code>mkdir<\/code> command is the &#8216;Permission denied&#8217; error. This typically occurs when you try to create a directory in a location where your user does not have write permissions.<\/p>\n<p>Here&#8217;s an example:<\/p>\n<pre><code class=\"language-bash line-numbers\">mkdir \/root\/new_directory\n\n# Output:\n# mkdir: cannot create directory '\/root\/new_directory': Permission denied\n<\/code><\/pre>\n<p>In this example, we&#8217;ve attempted to create a new directory &#8216;new_directory&#8217; in the &#8216;\/root&#8217; directory. However, because the &#8216;\/root&#8217; directory is typically only writable by the root user, we encounter a &#8216;Permission denied&#8217; error.<\/p>\n<p>To resolve this issue, you can either choose a location where your user has write permissions to create your directory, or use the <code>sudo<\/code> command to run the <code>mkdir<\/code> command with root privileges, like so:<\/p>\n<pre><code class=\"language-bash line-numbers\">sudo mkdir \/root\/new_directory\nls \/root\n\n# Output:\n# new_directory\n<\/code><\/pre>\n<p>In this example, we&#8217;ve used the <code>sudo<\/code> command to run <code>mkdir<\/code> with root privileges, successfully creating &#8216;new_directory&#8217; in the &#8216;\/root&#8217; directory.<\/p>\n<p>Remember, it&#8217;s generally not recommended to use <code>sudo<\/code> unless necessary due to the potential security risks. Always consider whether you can accomplish your task in a location where your user has the necessary permissions.<\/p>\n<h3>Directory Already Exists<\/h3>\n<p>Another common issue is attempting to create a directory that already exists. The <code>mkdir<\/code> command will return an error in this case. To avoid this, you can use the <code>-p<\/code> option, which will not return an error if the directory already exists.<\/p>\n<p>Here&#8217;s an example:<\/p>\n<pre><code class=\"language-bash line-numbers\">mkdir new_directory\nmkdir new_directory\n\n# Output:\n# mkdir: cannot create directory 'new_directory': File exists\n<\/code><\/pre>\n<p>And here&#8217;s how to avoid the error using the <code>-p<\/code> option:<\/p>\n<pre><code class=\"language-bash line-numbers\">mkdir -p new_directory\n\n# Output:\n# No output and no error\n<\/code><\/pre>\n<p>In this example, the <code>-p<\/code> option allows the <code>mkdir<\/code> command to run successfully even if &#8216;new_directory&#8217; already exists.<\/p>\n<p>By understanding these common issues and how to navigate them, you can use the <code>mkdir<\/code> command more effectively and efficiently.<\/p>\n<h2>Core Concepts of the Linux File System<\/h2>\n<p>To fully appreciate the power of the <code>mkdir<\/code> command, it&#8217;s essential to grasp the fundamentals of the Linux file system and directory structure. Let&#8217;s dive into that.<\/p>\n<h3>The Hierarchical Nature of Linux File System<\/h3>\n<p>The Linux file system is organized in a hierarchical structure, much like an inverted tree. At the top of this structure is the root directory, denoted by a slash (\/), from which all other directories branch off. This root directory can contain files and other directories, which can in turn contain more files and directories, and so on.<\/p>\n<p>Here&#8217;s an example of what this might look like:<\/p>\n<pre><code class=\"language-bash line-numbers\">\/\n|-- home\n|   |-- user1\n|   |-- user2\n|-- etc\n|-- var\n|-- usr\n<\/code><\/pre>\n<p>In this example, we see the root directory (\/) containing several directories including &#8216;home&#8217;, &#8216;etc&#8217;, &#8216;var&#8217;, and &#8216;usr&#8217;. The &#8216;home&#8217; directory then contains more directories, &#8216;user1&#8217; and &#8216;user2&#8217;.<\/p>\n<h3>The Role of Directories in Organizing Files<\/h3>\n<p>Directories play a crucial role in organizing files in Linux. They help you group related files together, making it easier to find and manage files. This is especially important when dealing with large numbers of files.<\/p>\n<p>For instance, you might have a directory for each project you&#8217;re working on, with subdirectories for different aspects of the project. This way, all your project files are neatly organized and easy to find.<\/p>\n<h3>How mkdir Command Fits into This System<\/h3>\n<p>The <code>mkdir<\/code> command is an essential tool for managing this directory structure. It allows you to create new directories wherever you need them, helping you keep your files organized.<\/p>\n<p>Here&#8217;s an example of creating a new project directory with subdirectories for &#8216;documents&#8217;, &#8216;code&#8217;, and &#8216;images&#8217;:<\/p>\n<pre><code class=\"language-bash line-numbers\">mkdir -p ProjectX\/{documents,code,images}\nls -R ProjectX\n\n# Output:\n# ProjectX:\n# documents  code  images\n<\/code><\/pre>\n<p>In this example, we use the <code>mkdir<\/code> command with the <code>-p<\/code> option to create a directory &#8216;ProjectX&#8217; with subdirectories &#8216;documents&#8217;, &#8216;code&#8217;, and &#8216;images&#8217;. The <code>ls -R<\/code> command is then used to list the directory structure recursively, showing the directories we&#8217;ve created.<\/p>\n<p>Understanding the Linux file system and directory structure can help you use the <code>mkdir<\/code> command more effectively, keeping your files well-organized and easy to manage.<\/p>\n<h2>Real-World Uses of mkdir Command<\/h2>\n<p>The <code>mkdir<\/code> command, while simple on the surface, is an essential tool in larger scripts and system administration tasks. Its ability to create directories swiftly and efficiently makes it a vital part of many scripts and programs.<\/p>\n<h3>Integrating mkdir into Shell Scripts<\/h3>\n<p>In shell scripting, the <code>mkdir<\/code> command can be used to set up directories for logs, temporary files, or any other purpose that the script requires. Here&#8217;s an example of a script that creates a directory for log files:<\/p>\n<pre><code class=\"language-bash line-numbers\">#!\/bin\/bash\n\n# Create a directory for log files\nmkdir -p ~\/logs\n\n# Rest of the script...\n<\/code><\/pre>\n<p>In this script, we use the <code>mkdir<\/code> command with the <code>-p<\/code> option to create a &#8216;logs&#8217; directory in the user&#8217;s home directory. The script can then write log files to this directory.<\/p>\n<h3>mkdir in System Administration<\/h3>\n<p>System administrators often use the <code>mkdir<\/code> command when setting up user accounts, managing file systems, or installing software. For instance, when adding a new user, an administrator might use <code>mkdir<\/code> to create a home directory for that user.<\/p>\n<h3>Related Commands and Concepts<\/h3>\n<p>While mastering the <code>mkdir<\/code> command is a significant step, there are other related commands and concepts that you might find useful. One of these is file permissions and the <code>chmod<\/code> command. The <code>chmod<\/code> command allows you to change the permissions of a file or directory, controlling who can read, write, and execute a file. This is especially relevant when creating directories, as you often need to set the correct permissions for the directory.<\/p>\n<p>Here&#8217;s an example of creating a directory and setting its permissions with <code>chmod<\/code>:<\/p>\n<pre><code class=\"language-bash line-numbers\">mkdir new_directory\nchmod 755 new_directory\nls -ld new_directory\n\n# Output:\n# drwxr-xr-x 2 user group 4096 Jan 1 00:00 new_directory\n<\/code><\/pre>\n<p>In this example, we first create a new directory &#8216;new_directory&#8217;. We then use the <code>chmod<\/code> command to set the permissions of &#8216;new_directory&#8217; to 755, which means the owner can read, write, and execute, while the group and others can read and execute.<\/p>\n<h3>Further Resources for Mastering Linux Commands<\/h3>\n<ol>\n<li><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/www.gnu.org\/software\/coreutils\/manual\/html_node\/mkdir-invocation.html\" target=\"_blank\" rel=\"noopener\">GNU Coreutils: mkdir invocation<\/a>: This is the official documentation for the <code>mkdir<\/code> command from GNU Coreutils. It provides a comprehensive overview of the command and its options.<\/p>\n<\/li>\n<li>\n<p><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/www.howtogeek.com\/117435\/htg-explains-the-linux-directory-structure-explained\/\" target=\"_blank\" rel=\"noopener\">Linux Directory Structure Explained<\/a>: This article from How-To Geek provides an in-depth explanation of the Linux directory structure, which is crucial for understanding how to use the <code>mkdir<\/code> command effectively.<\/p>\n<\/li>\n<li>\n<p><a class=\"wp-editor-md-post-content-link\" href=\"https:\/\/www.digitalocean.com\/community\/tutorials\/an-introduction-to-linux-permissions\" target=\"_blank\" rel=\"noopener\">An Introduction to Linux File Permissions<\/a>: This tutorial from DigitalOcean provides a beginner-friendly introduction to Linux file permissions and the <code>chmod<\/code> command. It&#8217;s a great resource for understanding how permissions work in Linux.<\/p>\n<\/li>\n<\/ol>\n<h2>Wrapping Up: Mastering the mkdir Command in Linux<\/h2>\n<p>In this comprehensive guide, we&#8217;ve delved deep into the world of the <code>mkdir<\/code> command in Linux, a powerful tool for creating directories and managing file systems.<\/p>\n<p>We started with the basics, learning how to create directories using the <code>mkdir<\/code> command. We then explored more advanced usage, such as creating nested directories, verbose mode, and setting permissions during directory creation. Along the way, we tackled common issues like &#8216;Permission denied&#8217; errors and &#8216;Directory already exists&#8217; errors, providing solutions and workarounds for each.<\/p>\n<p>We also looked at alternative methods for creating directories in Linux, including using the <code>touch<\/code> command and the &#8216;>&#8217; operator. Each method has its own strengths and use cases, and understanding them can give you more flexibility in managing your file system.<\/p>\n<p>Here&#8217;s a quick comparison of the methods we&#8217;ve discussed:<\/p>\n<table>\n<thead>\n<tr>\n<th>Method<\/th>\n<th>Use Case<\/th>\n<th>Example<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><code>mkdir<\/code><\/td>\n<td>Creating directories<\/td>\n<td><code>mkdir new_directory<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>touch<\/code><\/td>\n<td>Creating empty files and directories<\/td>\n<td><code>mkdir new_directory &amp;&amp; touch new_directory\/new_file.txt<\/code><\/td>\n<\/tr>\n<tr>\n<td><code>&gt;<\/code><\/td>\n<td>Creating files<\/td>\n<td><code>echo 'Hello, Linux!' &gt; new_file.txt<\/code><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Finally, we discussed the importance of the <code>mkdir<\/code> command in larger scripts and system administration tasks, and suggested related commands and concepts for further learning, such as file permissions and the <code>chmod<\/code> command.<\/p>\n<p>Whether you&#8217;re just starting out with the <code>mkdir<\/code> command or you&#8217;re looking to refine your skills, we hope this guide has helped you master this essential Linux command. With its versatility and power, the <code>mkdir<\/code> command is a vital tool for any Linux user. Happy coding!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Are you finding it challenging to create directories in your Linux environment? You&#8217;re not alone. Many users, especially beginners, grapple with this task, but there&#8217;s a command that can make this process a breeze. Think of the &#8216;mkdir&#8217; command in Linux as a skilled architect, capable of constructing directories with just a simple command. These [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":13800,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[124,3,9],"tags":[],"class_list":["post-6433","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bash","category-linux","category-sysadmin","cat-124-id","cat-3-id","cat-9-id","has_thumb"],"_links":{"self":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/6433","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/comments?post=6433"}],"version-history":[{"count":6,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/6433\/revisions"}],"predecessor-version":[{"id":13804,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/posts\/6433\/revisions\/13804"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media\/13800"}],"wp:attachment":[{"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/media?parent=6433"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/categories?post=6433"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ioflood.com\/blog\/wp-json\/wp\/v2\/tags?post=6433"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}