{"id":322,"date":"2011-12-05T21:12:37","date_gmt":"2011-12-05T21:12:37","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2011\/12\/05\/managing-files\/"},"modified":"2021-08-16T23:50:26","modified_gmt":"2021-08-17T03:50:26","slug":"managing-files","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/managing-files\/","title":{"rendered":"How to Manage Files from within SSH"},"content":{"rendered":"<p>In our previous articles, we showed you <a href=\"\/support\/server\/ssh\/how-to-login-ssh\/\">how to login via ssh<\/a> and also <a href=\"\/support\/server\/ssh\/navigate-command-line\/\">how to navigate through your folders via ssh<\/a>. In this article, we&#8217;ll show you how to manage your files from within the command line (ssh). When referring to managing your files, we are referring to common tasks such as:<\/p>\n<ul>\n<li>creating folders<\/li>\n<li>creating files<\/li>\n<li>copying files<\/li>\n<li>moving \/ renaming files<\/li>\n<li>deleting files<\/li>\n<\/ul>\n<h2>How can I create a folder?<\/h2>\n<p>Creating folders from within the command line is done using the <strong>mkdir<\/strong> command (make directories). The usage is simple, mkdir folder-name. In this example, we are going to create a folder named testa.<\/p>\n<p class=\"cli\"><em>user5@example.com [~]#<\/em> <strong>mkdir testa<\/strong><\/p>\n<p>If we use the ls command, we can list the current files and folders in this directory. You can now see that the testa folder is listed:<\/p>\n<p class=\"cli\"><em>user5@example.com [~]#<\/em> <strong>ls -alh<\/strong><br \/> total 64K<br \/> drwx&#8211;x&#8211;x  10 user5 user5  4.0K Dec  5 12:52 .\/<br \/> drwx&#8211;x&#8211;x  36 root  root   4.0K Dec  5 11:15 ..\/<br \/> -rw-r&#8211;r&#8211;   1 user5 user5    24 Dec  5 11:15 .bash_logout<br \/> -rw-r&#8211;r&#8211;   1 user5 user5   191 Dec  5 11:15 .bash_profile<br \/> -rw-r&#8211;r&#8211;   1 user5 user5   124 Dec  5 11:15 .bashrc<br \/> -rw&#8212;&#8212;-   1 user5 user5    18 Dec  5 11:15 .contactemail<br \/> -rw-r&#8211;r&#8211;   1 user5 user5    20 Dec  5 12:27 .dns<br \/> -rw-r&#8211;r&#8211;   1 user5 user5   147 Dec  5 11:15 .gemrc<br \/> drwxr-x&#8212;   2 user5 nobody 4.0K Dec  5 11:15 .htpasswds\/<br \/> drwxr-x&#8212;   2 user5 mail   4.0K Dec  5 11:15 etc\/<br \/> drwxr-x&#8212;   8 user5 user5  4.0K Dec  5 11:15 mail\/<br \/> drwxr-xr-x   2 user5 user5  4.0K Dec  5 11:23 perl5\/<br \/> drwxr-xr-x   3 user5 user5  4.0K Dec  5 11:15 public_ftp\/<br \/> drwxr-x&#8212;   3 user5 nobody 4.0K Dec  5 11:15 public_html\/<br \/><strong> drwxr-xr-x   2 user5 user5  4.0K Dec  5 12:52 testa\/<\/strong><br \/> drwxr-xr-x   2 user5 user5  4.0K Dec  5 11:15 tmp\/<br \/> lrwxrwxrwx   1 user5 user5    11 Dec  5 11:15 www -&gt; public_html\/<\/p>\n<p>Now that we&#8217;ve created the testa folder, we will go into that folder using the cd command:<\/p>\n<p class=\"cli\"><em>user5@example.com [~]#<\/em> <strong>cd testa\/<\/strong><\/p>\n<p>We can confirm that we are in the testa folder by running the <strong>pwd<\/strong> (print working directory) command:<\/p>\n<p class=\"cli\"><em>user5@example.com [~\/testa]#<\/em> <strong>pwd<\/strong><br \/><strong> \/home\/user5\/testa<\/strong><\/p>\n<h2>How can I create a file?<\/h2>\n<p>There are several ways to create files while you&#8217;re in the command line. Using the touch command is one of the more basic commands. The basic syntax for the touch command is touch filename.txt. For example, to create a file named test-file-1.txt, we&#8217;ll run:<\/p>\n<p class=\"cli\"><em>user5@example.com [~\/testa]#<\/em> <strong>touch test-file-1.txt<\/strong><\/p>\n<p>Using the ls command, we can see that this file was created successfully:<\/p>\n<p class=\"cli\"><em>user5@example.com [~\/testa]#<\/em> <strong>ls -alh<\/strong><br \/> total 8.0K<br \/> drwxr-xr-x   2 user5 user5 4.0K Dec  5 12:56 .\/<br \/> drwx&#8211;x&#8211;x  10 user5 user5 4.0K Dec  5 12:52 ..\/<br \/><strong> -rw-r&#8211;r&#8211;   1 user5 user5    0 Dec  5 12:56 test-file-1.txt<\/strong><\/p>\n<h2>How can I copy a file?<\/h2>\n<p>Copying a file is done by using the cp (copy) command. The basic cp command syntax is cp original-file new-file. If we wanted to copy test-file-1.txt to test-file-2.txt, we can run:<\/p>\n<p class=\"cli\"><em>user5@example.com [~\/testa]#<\/em> <strong>cp test-file-1.txt test-file-2.txt<\/strong><\/p>\n<p>You can confirm the new file was created by running the ls command:<\/p>\n<p class=\"cli\"><em>user5@example.com [~\/testa]#<\/em> <strong>ls -alh<\/strong><br \/> total 8.0K<br \/> drwxr-xr-x   2 user5 user5 4.0K Dec  5 12:58 .\/<br \/> drwx&#8211;x&#8211;x  10 user5 user5 4.0K Dec  5 12:52 ..\/<br \/> -rw-r&#8211;r&#8211;   1 user5 user5    0 Dec  5 12:56 test-file-1.txt<br \/><strong> -rw-r&#8211;r&#8211;   1 user5 user5    0 Dec  5 12:58 test-file-2.txt<\/strong><\/p>\n<h2>How can I move \/ rename a file?<\/h2>\n<p>Those users familiar with Microsoft Windows are aware of the &#8216;cut&#8217; and &#8216;paste&#8217; commands. What these commands are actually doing is moving a file from one location to another. You can move files using the mv command (move). The basic usage of the command is mv original-file new-file. To move test-file-2.txt to test-file-3.txt:<\/p>\n<p class=\"cli\"><em>user5@example.com [~\/testa]#<\/em> <strong>mv test-file-2.txt test-file-3.txt<\/strong><\/p>\n<p>You can then use the ls command to confirm that the file was renamed:<\/p>\n<p class=\"cli\"><em>user5@example.com [~\/testa]#<\/em> <strong>ls -alh<\/strong><br \/> total 8.0K<br \/> drwxr-xr-x   2 user5 user5 4.0K Dec  5 13:06 .\/<br \/> drwx&#8211;x&#8211;x  10 user5 user5 4.0K Dec  5 12:52 ..\/<br \/> -rw-r&#8211;r&#8211;   1 user5 user5    0 Dec  5 12:56 test-file-1.txt<br \/><strong> -rw-r&#8211;r&#8211;   1 user5 user5    0 Dec  5 12:58 test-file-3.txt<\/strong><\/p>\n<p>You can also move files to other directories. Let&#8217;s start off by creating a folder named folder3:<\/p>\n<p class=\"cli\"><em>user5@example.com [~\/testa]#<\/em> <strong>mkdir folder3<\/strong><br \/><em> user5@example.com [~\/testa]#<\/em> <strong>ls -alh<\/strong><br \/> total 12K<br \/> drwxr-xr-x   3 user5 user5 4.0K Dec  5 13:08 .\/<br \/> drwx&#8211;x&#8211;x  10 user5 user5 4.0K Dec  5 12:52 ..\/<br \/><strong> drwxr-xr-x   2 user5 user5 4.0K Dec  5 13:08 folder3\/<\/strong><br \/> -rw-r&#8211;r&#8211;   1 user5 user5    0 Dec  5 12:56 test-file-1.txt<br \/> -rw-r&#8211;r&#8211;   1 user5 user5    0 Dec  5 12:58 test-file-3.txt<\/p>\n<p>To move test-file-3.txt to folder3, run:<\/p>\n<p class=\"cli\"><em>user5@example.com [~\/testa]#<\/em> <strong>mv test-file-3.txt folder3\/<\/strong><\/p>\n<p>Up to this point, we&#8217;ve used ls -alh to list what files are in the current directory. You don&#8217;t actually have to be in a directory to see the files in it. You can specify a folder to list the files of when using ls:<\/p>\n<p class=\"cli\"><em>user5@example.com [~\/testa]#<\/em> <strong>ls -alh folder3\/<\/strong><br \/> total 8.0K<br \/> drwxr-xr-x  2 user5 user5 4.0K Dec  5 13:08 .\/<br \/> drwxr-xr-x  3 user5 user5 4.0K Dec  5 13:08 ..\/<br \/><strong> -rw-r&#8211;r&#8211;  1 user5 user5    0 Dec  5 12:58 test-file-3.txt<\/strong><\/p>\n<h2>How to delete a file \/ folder?<\/h2>\n<p class=\"alert\">CAUTION! Linux does not include a &#8220;trash&#8221; folder. Unlike in Windows, once you delete a file in Linux, it is gone. There is not an option to retrieve it from a trash or recycling bin.<\/p>\n<p>Deleting files in the command line can be done using the rm command (remove). The basic usage is rm file-to-delete. You can delete the test-file-1.txt by running:<\/p>\n<p class=\"cli\"><em>user5@example.com [~\/testa]#<\/em> <strong>rm test-file-1.txt<\/strong><\/p>\n<p>You can then run ls to confirm the file is no longer there:<\/p>\n<p class=\"cli\"><em>user5@example.com [~\/testa]#<\/em> <strong>ls -alh<\/strong><br \/> total 12K<br \/> drwxr-xr-x   3 user5 user5 4.0K Dec  5 13:11 .\/<br \/> drwx&#8211;x&#8211;x  10 user5 user5 4.0K Dec  5 12:52 ..\/<br \/> drwxr-xr-x   2 user5 user5 4.0K Dec  5 13:08 folder3\/<\/p>\n<p>If you were to try to delete the folder folder3, you could try running:<\/p>\n<p class=\"cli\"><em>user5@example.com [~\/testa]#<\/em> <strong>rm folder3<\/strong><br \/><strong> rm: cannot remove `folder3&#8242;: Is a directory<\/strong><\/p>\n<p>If you noticed, we received an error: <span style=\"text-decoration: underline;\">rm: cannot remove `folder3&#8242;: Is a directory<\/span>. In order to delete a folder, you must delete not only the folder but the files within the folder as well. You can do this with one command, rm -rf:<\/p>\n<p class=\"cli\"><em>user5@example.com [~\/testa]#<\/em> <strong>rm -rf folder3\/<\/strong><\/p>\n<p>You can use the ls command to confirm that the folder folder3 has been removed:<\/p>\n<p>&lt;<\/p>\n<p>p class=&#8221;cli&#8221;><em>user5@example.com [~\/testa]#<\/em> <strong>ls -alh<\/strong><br \/> total 8.0K<br \/> drwxr-xr-x   2 user5 user5 4.0K Dec  5 13:14 .\/<br \/> drwx&#8211;x&#8211;x  10 user5 user5 4.0K Dec  5 12:52 ..\/<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In our previous articles, we showed you how to login via ssh and also how to navigate through your folders via ssh. In this article, we&#8217;ll show you how to manage your files from within the command line (ssh). When referring to managing your files, we are referring to common tasks such as: creating folders<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/managing-files\/\"> Read More ><\/a><\/p>\n","protected":false},"author":2,"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":[4307],"tags":[],"class_list":["post-322","post","type-post","status-publish","format-standard","hentry","category-ssh"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Manage Files from within SSH | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"In this article, we&#039;ll show the basics of managing files from within the command line. This includes creating files, moving \/ renamed them, and then finally deleting files.\" \/>\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\/ssh\/managing-files\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Manage Files from within SSH | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"In this article, we&#039;ll show the basics of managing files from within the command line. This includes creating files, moving \/ renamed them, and then finally deleting files.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/managing-files\/\" \/>\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=\"2011-12-05T21:12:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-17T03:50:26+00:00\" \/>\n<meta name=\"author\" content=\"Brad Markle\" \/>\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=\"Brad Markle\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 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\/ssh\/managing-files\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/managing-files\/\"},\"author\":{\"name\":\"Brad Markle\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5ae05d1210b0ef63c437ccedce2799bf\"},\"headline\":\"How to Manage Files from within SSH\",\"datePublished\":\"2011-12-05T21:12:37+00:00\",\"dateModified\":\"2021-08-17T03:50:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/managing-files\/\"},\"wordCount\":979,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"articleSection\":[\"SSH and Root Access\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/managing-files\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/managing-files\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/managing-files\/\",\"name\":\"How to Manage Files from within SSH | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"datePublished\":\"2011-12-05T21:12:37+00:00\",\"dateModified\":\"2021-08-17T03:50:26+00:00\",\"description\":\"In this article, we'll show the basics of managing files from within the command line. This includes creating files, moving \/ renamed them, and then finally deleting files.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/managing-files\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/managing-files\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/managing-files\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Manage Files from within SSH\"}]},{\"@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\/5ae05d1210b0ef63c437ccedce2799bf\",\"name\":\"Brad Markle\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/bradm\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Manage Files from within SSH | InMotion Hosting","description":"In this article, we'll show the basics of managing files from within the command line. This includes creating files, moving \/ renamed them, and then finally deleting files.","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\/ssh\/managing-files\/","og_locale":"en_US","og_type":"article","og_title":"How to Manage Files from within SSH | InMotion Hosting","og_description":"In this article, we'll show the basics of managing files from within the command line. This includes creating files, moving \/ renamed them, and then finally deleting files.","og_url":"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/managing-files\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2011-12-05T21:12:37+00:00","article_modified_time":"2021-08-17T03:50:26+00:00","author":"Brad Markle","twitter_card":"summary_large_image","twitter_creator":"@InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"Brad Markle","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/managing-files\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/managing-files\/"},"author":{"name":"Brad Markle","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/5ae05d1210b0ef63c437ccedce2799bf"},"headline":"How to Manage Files from within SSH","datePublished":"2011-12-05T21:12:37+00:00","dateModified":"2021-08-17T03:50:26+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/managing-files\/"},"wordCount":979,"commentCount":2,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"articleSection":["SSH and Root Access"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/managing-files\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/managing-files\/","url":"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/managing-files\/","name":"How to Manage Files from within SSH | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"datePublished":"2011-12-05T21:12:37+00:00","dateModified":"2021-08-17T03:50:26+00:00","description":"In this article, we'll show the basics of managing files from within the command line. This includes creating files, moving \/ renamed them, and then finally deleting files.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/managing-files\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/managing-files\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/ssh\/managing-files\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to Manage Files from within SSH"}]},{"@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\/5ae05d1210b0ef63c437ccedce2799bf","name":"Brad Markle","url":"https:\/\/www.inmotionhosting.com\/support\/author\/bradm\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/322","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\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=322"}],"version-history":[{"count":2,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/322\/revisions"}],"predecessor-version":[{"id":86453,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/322\/revisions\/86453"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=322"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=322"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=322"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}