{"id":3418,"date":"2014-10-21T17:32:32","date_gmt":"2014-10-21T17:32:32","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2014\/10\/21\/cp-command\/"},"modified":"2022-03-31T19:23:18","modified_gmt":"2022-03-31T23:23:18","slug":"cp-command","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/cp-command\/","title":{"rendered":"cp command"},"content":{"rendered":"<div class=\"in_this_tutorial\">\n<h2>In this tutorial:<\/h2>\n<p><a class=\"btn btn-primary\" href=\"#structure\" type=\"button\">Command structure<\/a> <a class=\"btn btn-primary\" href=\"#examples\" type=\"button\">Examples<\/a><\/p>\n<\/div>\n<p>At first, the <em>cp<\/em> command seems like a very straightforward command. While it is certainly a simple concept to copy a file or directory from one location to another, it has many different options involved to tailor the process. The <em>cp<\/em> command is also one of the most used <a href=\"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/command-list\/\">Linux commands<\/a>. Below we go over the options you can use with the command followed by some of the more commonly used option combinations.<\/p>\n<p><a name=\"structure\"><\/a><\/p>\n<h2>Command Structure<\/h2>\n<p><strong>Command: <\/strong>cp<br \/>\n<strong>Synopsis: <\/strong>cd [OPTION]&#8230; SOURCE&#8230; DIRECTORY<\/p>\n<p><strong>List of Options: <\/strong><\/p>\n<div class=\"alert\"><strong>NOTE:<\/strong> Some options have only a short name, some only a long name, and some both. If an option has both, then you may use either format.<\/div>\n<table class=\"article_table\">\n<tbody>\n<tr>\n<th width=\"80\">Short Name<\/th>\n<th width=\"180\">Long name<\/th>\n<th>Description<\/th>\n<\/tr>\n<tr>\n<td>-a<\/td>\n<td>&#8211;archive<\/td>\n<td>This is the same as using the option cobination:<br \/>\n-dR &#8211;preserve=all<\/td>\n<\/tr>\n<tr>\n<td><\/td>\n<td>&#8211;backup[=CONTROL]<\/td>\n<td>Make a backup of each existing destination file.<\/td>\n<\/tr>\n<tr>\n<td>-b<\/td>\n<td><\/td>\n<td>Like &#8211;backup, but does not use an argument<\/td>\n<\/tr>\n<tr>\n<td><\/td>\n<td>&#8211;copy-contents<\/td>\n<td>Copy contents of special files when recursive.<\/td>\n<\/tr>\n<tr>\n<td>-d<\/td>\n<td><\/td>\n<td>Same as the &#8211;no-deference &#8212; preserve=links combination<\/td>\n<\/tr>\n<tr>\n<td>-f<\/td>\n<td>&#8211;force<\/td>\n<td> If an existing destination file cannot be opened, remove it and then try again.<\/td>\n<\/tr>\n<tr>\n<td>-i<\/td>\n<td>&#8211;interactive<\/td>\n<td>Prompt before an overwrite occurs<\/td>\n<\/tr>\n<tr>\n<td>-H<\/td>\n<td><\/td>\n<td>Follow command-line symbolic links in the source.<\/td>\n<\/tr>\n<tr>\n<td>-l<\/td>\n<td>&#8211;link<\/td>\n<td>Link files instead of copying them<\/td>\n<\/tr>\n<tr>\n<td>-n<\/td>\n<td>&#8211;no-cobbler<\/td>\n<td>Don&#8217;t overwrite an existing file.<\/td>\n<\/tr>\n<tr>\n<td>-P<\/td>\n<td>&#8211;no-deference<\/td>\n<td>Never follow symbolic links in the source<\/td>\n<\/tr>\n<tr>\n<td>-p<\/td>\n<td><\/td>\n<td>This is the same as using &#8211;preserve=mode,ownership,timestamps<\/td>\n<\/tr>\n<tr>\n<td><\/td>\n<td>&#8211;preserve[=ATTR_LIST]<\/td>\n<td>This option preserves the specified attributes. &#8216;mode&#8217;,&#8217;ownership&#8217;,&#8217;timestamps&#8217; are the default attributes preserved. Additional attributes are &#8216;context&#8217;,links&#8217;,&#8217;xattr&#8217;,&#8217;all&#8217;<\/td>\n<\/tr>\n<tr>\n<td>-c<\/td>\n<td><\/td>\n<td>This is the same as &#8211;preserve=context<\/td>\n<\/tr>\n<tr>\n<td><\/td>\n<td>&#8211;no-preserve[=ATTR_LIST]<\/td>\n<td>When using this command, list the attributes you do not want to preserve (same available attributes as &#8211;preserve).<\/td>\n<\/tr>\n<tr>\n<td><\/td>\n<td>&#8211;parents<\/td>\n<td>Uses the full source file name under the DIRECTORY<\/td>\n<\/tr>\n<tr>\n<td>-R, -r<\/td>\n<td>&#8211;recursive<\/td>\n<td>Copy the directories recursively.<\/td>\n<\/tr>\n<tr>\n<td><\/td>\n<td>&#8211;remove-destination<\/td>\n<td>Removes the existing destination file before opening it. This option is the opposite of &#8211;force.<\/td>\n<\/tr>\n<tr>\n<td><\/td>\n<td>&#8211;strip-trailing-slashes<\/td>\n<td>Removes any trailing slashes form he source parameter.<\/td>\n<\/tr>\n<tr>\n<td>-s<\/td>\n<td>&#8211;symbolic-link<\/td>\n<td>This option will override the normal backup suffix with the entered parameter.<\/td>\n<\/tr>\n<tr>\n<td>-t<\/td>\n<td>&#8211;target-directory=DIRECTORY<\/td>\n<td>Copies all documents from the source into the specified DIRECTORY<\/td>\n<\/tr>\n<tr>\n<td>-u<\/td>\n<td>&#8211;update<\/td>\n<td>This copies source files only when they are newer than the destination files or if the destination file is missing.<\/td>\n<\/tr>\n<tr>\n<td>-v<\/td>\n<td>&#8211;verbose<\/td>\n<td>This explains what is being done by displaying it on the console.<\/td>\n<\/tr>\n<tr>\n<td>-x<\/td>\n<td>&#8211;one-file-system<\/td>\n<td>Make a backup of each existing destination file.<\/td>\n<\/tr>\n<tr>\n<td>-z<\/td>\n<td>&#8211;context=TEXT<\/td>\n<td>This option sets the security context of the copied file to CONTEXT<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><a name=\"examples\"><\/a><\/p>\n<h2>Examples<\/h2>\n<p>Using the options above, you can create many different combinations to tailor the copy to your own needs. Below are a few examples of the more common uses of the <em>cp<\/em> command.<\/p>\n<h3>Make a backup of a file<\/h3>\n<p>This basic format allows you to create a backup copy of a specific file. This is highly recommended before making any changes to a file.<\/p>\n<pre class=\"cli\"> # <span style=\"color:red\">cp test.txt test.txt.bak<\/span> # <span style=\"color:red\">ls<\/span> test.txt test.txt.bak<\/pre>\n<h3>Copy a file from one directory to another<\/h3>\n<p>In this example you can see we are copying the <em>test.txt<\/em> file from the current directory to the sub directory named <em>files<\/em>. This performs very similarly to the <a href=\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/mv-command\/\">mv command<\/a>, except this one leaves a copy in the current location in addition to creating the copy in the <em>files<\/em> folder.<\/p>\n<pre class=\"cli\"> # <span style=\"color:red\">cp test.txt files\/test.txt<\/span><\/pre>\n<h3>Copy a file and preserve attribute information<\/h3>\n<p>When copying a file, by default it will not copy attributes such as the owner or timestamp. Using the <em>&#8211;preserve<\/em> option you can force it to also copy those attributes. First we list the files in the directory to show you the owners and timestamps.<\/p>\n<pre class=\"cli\"> # <span style=\"color:red\">ls -l<\/span> drwxr-xr-x  2 userna5 userna5 4096 Oct 21 14:42 .\/ drwxr-x--- 31 userna5 nobody  4096 Oct 21 09:53 ..\/ -rw-r--r--  1 userna5 userna5  896 Sep 29 15:04 test.txt -rw-r--r--  1 userna5 userna5 1212 Sep 29 15:04 index.php<\/pre>\n<p>Next, we run the command to copy the test.txt file to test.txt.bak, using the &#8211;preserve command. By default, this retains the timestamp, mode (permissions), and ownership.<\/p>\n<pre class=\"cli\"> # <span style=\"color:red\">cp --preserve test.txt test2.txt<\/span><\/pre>\n<p>Now you can see below that the new file retained the permissions, user, and timestamp.<\/p>\n<pre class=\"cli\"> # <span style=\"color:red\">ls -l<\/span> drwxr-xr-x  2 userna5 userna5 4096 Oct 21 14:42 .\/ drwxr-x--- 31 userna5 nobody  4096 Oct 21 09:53 ..\/ -rw-r--r--  1 userna5 userna5  896 Sep 29 15:04 test.txt -rw-r--r--  1 userna5 userna5  896 Sep 29 15:04 test2.txt -rw-r--r--  1 userna5 userna5 1212 Sep 29 15:04 index.php<\/pre>\n<h3>Copy a directory<\/h3>\n<p>Here we show you how to copy a directory and its contents to another directory. This moves the entire folder as well, so if we copy the <em>test<\/em> folder into the <em>files<\/em> folder, then there will be a <em>test<\/em> folder inside the <em>files<\/em> folder and a copy of all the contents of the <em>test<\/em> folder will be inside the <em>files\/test<\/em> folder. Note that we use the <em>-r<\/em> option when performing this. The <i>-r<\/i> option stands  for <i>recursive<\/i> which means that it copies all of the  files inside the source folder.<\/p>\n<pre class=\"cli\"> # <span style=\"color:red\">cp -r files test<\/span><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial: Command structure Examples At first, the cp command seems like a very straightforward command. While it is certainly a simple concept to copy a file or directory from one location to another, it has many different options involved to tailor the process. The cp command is also one of the most used<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/cp-command\/\"> Read More ><\/a><\/p>\n","protected":false},"author":8,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4308],"tags":[],"class_list":["post-3418","post","type-post","status-publish","format-standard","hentry","category-linux"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>cp command | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"Learn the options and usage of the cp Linux 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:\/\/www.inmotionhosting.com\/support\/server\/linux\/cp-command\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"cp command | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"Learn the options and usage of the cp Linux command.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/cp-command\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2014-10-21T17:32:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-03-31T23:23:18+00:00\" \/>\n<meta name=\"author\" content=\"Scott Mitchell\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Scott Mitchell\" \/>\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:\/\/www.inmotionhosting.com\/support\/server\/linux\/cp-command\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/cp-command\/\"},\"author\":{\"name\":\"Scott Mitchell\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/d850efb28ef3573db7d24b0d8fa9eaed\"},\"headline\":\"cp command\",\"datePublished\":\"2014-10-21T17:32:32+00:00\",\"dateModified\":\"2022-03-31T23:23:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/cp-command\/\"},\"wordCount\":738,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"articleSection\":[\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/cp-command\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/cp-command\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/cp-command\/\",\"name\":\"cp command | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"datePublished\":\"2014-10-21T17:32:32+00:00\",\"dateModified\":\"2022-03-31T23:23:18+00:00\",\"description\":\"Learn the options and usage of the cp Linux command.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/cp-command\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/cp-command\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/cp-command\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"cp command\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/d850efb28ef3573db7d24b0d8fa9eaed\",\"name\":\"Scott Mitchell\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/scott\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"cp command | InMotion Hosting","description":"Learn the options and usage of the cp Linux 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:\/\/www.inmotionhosting.com\/support\/server\/linux\/cp-command\/","og_locale":"en_US","og_type":"article","og_title":"cp command | InMotion Hosting","og_description":"Learn the options and usage of the cp Linux command.","og_url":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/cp-command\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2014-10-21T17:32:32+00:00","article_modified_time":"2022-03-31T23:23:18+00:00","author":"Scott Mitchell","twitter_card":"summary_large_image","twitter_creator":"@InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"Scott Mitchell","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/cp-command\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/cp-command\/"},"author":{"name":"Scott Mitchell","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/d850efb28ef3573db7d24b0d8fa9eaed"},"headline":"cp command","datePublished":"2014-10-21T17:32:32+00:00","dateModified":"2022-03-31T23:23:18+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/cp-command\/"},"wordCount":738,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"articleSection":["Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/server\/linux\/cp-command\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/cp-command\/","url":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/cp-command\/","name":"cp command | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"datePublished":"2014-10-21T17:32:32+00:00","dateModified":"2022-03-31T23:23:18+00:00","description":"Learn the options and usage of the cp Linux command.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/cp-command\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/server\/linux\/cp-command\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/linux\/cp-command\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"cp command"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/d850efb28ef3573db7d24b0d8fa9eaed","name":"Scott Mitchell","url":"https:\/\/www.inmotionhosting.com\/support\/author\/scott\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/3418","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=3418"}],"version-history":[{"count":1,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/3418\/revisions"}],"predecessor-version":[{"id":95552,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/3418\/revisions\/95552"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=3418"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=3418"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=3418"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}