{"id":15948,"date":"2024-09-13T07:27:15","date_gmt":"2024-09-13T06:27:15","guid":{"rendered":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/?p=15948"},"modified":"2024-09-13T07:27:16","modified_gmt":"2024-09-13T06:27:16","slug":"secure-shell-commands","status":"publish","type":"post","link":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/secure-shell-commands\/","title":{"rendered":"Must Know Secure Shell Commands For System Security"},"content":{"rendered":"\n<p>SSH is an abbreviation for Secure Shell, which is a valuable tool for securely accessing and managing remote servers. Even if you\u2019re a newcomer or a seasoned professional, learning these most commonly used secure shell commands will improve your productivity and expertise in effectively handling your servers.<\/p>\n\n\n\n<p>Let\u2019s unfurl the Secure Shell (SSH) commands that every user must need to know:&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Key Secure Shell Commands<\/h2>\n\n\n\n<p>SSH, Secure Shell, or Secure Socket Shell is a network communication protocol that facilitates communication between two devices. This encrypted connection can also be utilized for file transfers, terminal access, and application tunneling.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Basic SSH Commands With Description:&nbsp;<\/h2>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table class=\"has-background\" style=\"background-color:#eef6ff\"><tbody><tr><td><strong>Secure Shell Command (SSH)<\/strong><\/td><td><strong>Description<\/strong><\/td><\/tr><tr><td><strong>ls<\/strong><\/td><td>Show directory contents, i.e., list all file names.<\/td><\/tr><tr><td><strong>cd<\/strong><\/td><td>Change directory.<\/td><\/tr><tr><td><strong>mkdir<\/strong><\/td><td>Create a new folder or directory.<\/td><\/tr><tr><td><strong>touch<\/strong><strong><\/strong><\/td><td>Create a new file.<\/td><\/tr><tr><td><strong>rm<\/strong><\/td><td>Remove a file.<\/td><\/tr><tr><td><strong>cat<\/strong><\/td><td>Show the contents of a file.<\/td><\/tr><tr><td><strong>pwd<\/strong><\/td><td>Show the current directory. It shows your full path to where you are right now.<\/td><\/tr><tr><td><strong>cp<\/strong><\/td><td>Copy a file or folder.<\/td><\/tr><tr><td><strong>mv<\/strong><\/td><td>Move a file or folder.<\/td><\/tr><tr><td><strong>grep<\/strong><\/td><td>Look for a particular phrase or string in the file or lines.<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">1. Is Command<\/h3>\n\n\n\n<p>This Secure Shell command is utilized to show the directory contents or, in other words, list all the files and directories.<\/p>\n\n\n\n<p><em><strong>Syntax<\/strong>: ls [options] [paths]<\/em><\/p>\n\n\n\n<p>You can combine the ls command with a few useful options:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>-l \u2014&nbsp; It shows file details, like size, last updated date and time, the owner, and the permissions.<\/li>\n\n\n\n<li>-a \u2014&nbsp; It shows all the files together with hidden files in the respective directory.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">2. cd Command<\/h3>\n\n\n\n<p>cd command stands for Change Directory. This simple SSH command is used to navigate between directories. You just have to enter cd followed by the directory name:<\/p>\n\n\n\n<p><strong>Syntax<\/strong>: cd [directory]<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>If you wish to navigate to your server\u2019s home directory, you can type the following command:&nbsp;<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>cd \/home<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You can also enter the complete path of a specific directory, irrespective of its hierarchical depth. For example:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>cd \/home\/TestingDirectory\/AnotherTestingDirectory<\/code><\/pre>\n\n\n\n<p>Thus, you\u2019re now inside the AnotherTestingDirectory.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>If you want to go back one level, just enter two dots ( \u201c..\u201d) after the cd command. Similarly, if you enter two more dots and separate them with a forward slash (\u201c\/\u201d), you\u2019ll be able to go back further:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>cd ..\/..<\/code><\/pre>\n\n\n\n<p>After entering this command, you\u2019ll be back in the home directory again.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3. mkdir Command<\/h3>\n\n\n\n<p>A mkdir SSH command is used for making a new directory.&nbsp;<\/p>\n\n\n\n<p><strong>Syntax: <\/strong>mkdir [folder name]<\/p>\n\n\n\n<p>Assume that you wish to create a new directory named \u201cmyfirstdirectory,\u201d then the command will be:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mkdir myfirstfolder<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">4. touch Command<\/h3>\n\n\n\n<p>A touch command is useful when you wish to create a new file.<\/p>\n\n\n\n<p><strong>Syntax: <\/strong>touch [file name]<\/p>\n\n\n\n<p>Assume that you wish to create a new text file named \u201cmyfirstfile,\u201d then you\u2019ll have to enter the following command:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>touch myfirstfile.txt.<\/code><\/pre>\n\n\n\n<p>You can choose any file extension you want or you can create a new file with no extension.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">5. rm Command<\/h3>\n\n\n\n<p>The rm Secure Shell command is used for removing a specific file or directory.&nbsp;<\/p>\n\n\n\n<p><strong>Syntax:<\/strong> rm [file name]<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>For example, assume that you wish to remove myfirstfile.txt. Then simply run the following command:&nbsp;<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>rm myfirstfile.txt<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>If you want to remove a directory,&nbsp; then add the \u201c-r\u201d option with the rm command to remove all the files and subfolders within it:&nbsp;<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>rm -r home\/milesweb\/myfirstfolder<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">6. cat Command<\/h3>\n\n\n\n<p>A cat command is used to show the content of a file.&nbsp;<\/p>\n\n\n\n<p><strong>Syntax: <\/strong>cat [file name]<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>This SSH command also enables you to create a new file by combining several files:&nbsp;<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>cat info1.txt info2.txt &gt; info3.txt<\/code><\/pre>\n\n\n\n<p>The above command will store all the data present inside both the info1.txt as well as info2.txt files in a newly created info3.txt file.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">7. pwd Command<\/h3>\n\n\n\n<p>pwd is a simple Secure Shell command that displays the complete path of your current working directory.&nbsp;<\/p>\n\n\n\n<p><strong>Syntax: <\/strong>pwd<\/p>\n\n\n\n<p>After entering the pwd command, you\u2019ll see an output like this:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>home\/user1\/public_html<\/code><\/pre>\n\n\n\n<p>Most of the time, shared hosting servers don\u2019t show the current working directory you\u2019re in. This is where a pwd command is helpful.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">8. cp Command<\/h3>\n\n\n\n<p>A cp command is used to copy files and folders.&nbsp;<\/p>\n\n\n\n<p><strong>Syntax:<\/strong> cp [options] [source] [destination]<\/p>\n\n\n\n<p>Here,<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Source file &#8211;<\/strong> refers to the file or directory for copying.<\/li>\n\n\n\n<li><strong>Destination file &#8211; <\/strong>it doesn\u2019t exist, but the cp command creates it by copying the entire content of the source file into it.&nbsp;<\/li>\n<\/ul>\n\n\n\n<p>For example, assume that you\u2019ve got a file named \u201cmyfirstfile.txt\u201d in your current directory and you wish to make a copy of it. Then enter the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cp myfirstfile.txt myfirstfile2.txt<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>To make a copy in another folder, use the following command:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>cp \/home\/milesweb\/myfirstfile.txt \/home\/etc\/<\/code><\/pre>\n\n\n\n<p>Be mindful when entering the name of the destination file or folder. If you put two file or folder names, then, as you know, a cp command copies the content of the source file into the destination file. In this case, the destination file will be overwritten without prior notification. But having said that, if the destination file isn\u2019t available, then the cp command will create a new file.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">9. mv Command<\/h3>\n\n\n\n<p>A mv command works the same as the cp command, but the mv command will move the respective file or folder rather than copying it.&nbsp;<\/p>\n\n\n\n<p><strong>Syntax:<\/strong> mv [source] [destination]<\/p>\n\n\n\n<p>Assume that you want to move myfirstfile.txt from \/home\/milesweb\/ftp to \/home\/milesweb\/myfirstfolder\/. Then, you must enter:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mv \/home\/milesweb\/ftp\/myfirstfile.txt \/home\/milesweb\/myfirstfolder<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Contrary to the cp command, you won\u2019t require the \u201c-r\u201d option to move a file or folder. For example:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>mv \/home\/milesweb\/ftp\/ \/home\/milesweb\/myfirstfolder\/&nbsp;<\/code><\/pre>\n\n\n\n<p>The above command will automatically move all the files and subdirectories within the ftp folder to myfirstfolder.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">10. grep Command<\/h3>\n\n\n\n<p>A grep command is used to find the given string in the files.<\/p>\n\n\n\n<p><strong>Syntax: <\/strong>grep [search_word] [file_name]<\/p>\n\n\n\n<p>For instance, assume that you want to look for the term \u201chosting\u201d in the \u201cinfo1.txt\u201d file. Then the command will be:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>grep 'hosting\u2019 info1.txt<\/code><\/pre>\n\n\n\n<p>The above command will look for \u2018hosting\u2019 in a text file named \u201cinfo1.txt.\u201d As an output, it\u2019ll print the complete sentence that contains the matched string.<\/p>\n\n\n\n<p>Remember that the grep command is case-sensitive and if you wish to ignore the lettercases, then use the \u201c-i\u201d option with it.<\/p>\n\n\n\n<div class=\"vlt-box \">\n<div class=\"box-title\" style=\"background:#D5EAFF; color:#000\">Conclusion<\/div>\n<div class=\"box-content\">\n<p>Mastering Secure Shell (SSH) commands is important for effortlessly managing Linux servers and it\u2019s the most efficient method to browse through your system device and make changes to files and folders.<\/p>\n<\/div><\/div>\n","protected":false},"excerpt":{"rendered":"<p>SSH is an abbreviation for Secure Shell, which is a valuable tool for securely accessing and managing remote servers. Even if you\u2019re a newcomer or a seasoned professional, learning these most commonly used secure shell commands will improve your productivity and expertise in effectively handling your servers. Let\u2019s unfurl the Secure Shell (SSH) commands that [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[41],"tags":[3012],"class_list":["post-15948","post","type-post","status-publish","format-standard","placeholder-for-hentry","category-howtos","tag-secure-shell-commands"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Must Know Secure Shell Commands For System Security<\/title>\n<meta name=\"description\" content=\"Explore must-know secure shell commands that are necessary for working with files in Linux environments and how to utilize them.\" \/>\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.milesweb.co.uk\/hosting-faqs\/secure-shell-commands\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Must Know Secure Shell Commands For System Security\" \/>\n<meta property=\"og:description\" content=\"Explore must-know secure shell commands that are necessary for working with files in Linux environments and how to utilize them.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/secure-shell-commands\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Hosting FAQs by MilesWeb\" \/>\n<meta property=\"article:published_time\" content=\"2024-09-13T06:27:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-13T06:27:16+00:00\" \/>\n<meta name=\"author\" content=\"Ujwala\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ujwala\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated 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\":\"WebPage\",\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/secure-shell-commands\/\",\"url\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/secure-shell-commands\/\",\"name\":\"Must Know Secure Shell Commands For System Security\",\"isPartOf\":{\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#website\"},\"datePublished\":\"2024-09-13T06:27:15+00:00\",\"dateModified\":\"2024-09-13T06:27:16+00:00\",\"author\":{\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/485f82549b85b9f4c82dc208c42964a8\"},\"description\":\"Explore must-know secure shell commands that are necessary for working with files in Linux environments and how to utilize them.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/secure-shell-commands\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/secure-shell-commands\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/secure-shell-commands\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Must Know Secure Shell Commands For System Security\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#website\",\"url\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/\",\"name\":\"Web Hosting FAQs by MilesWeb\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/485f82549b85b9f4c82dc208c42964a8\",\"name\":\"Ujwala\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/8d26ea4b9b2d83ae90b67f6bf5eefbca?s=96&d=blank&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/8d26ea4b9b2d83ae90b67f6bf5eefbca?s=96&d=blank&r=g\",\"caption\":\"Ujwala\"},\"description\":\"My aim is to create enriching content on topics related to SEO, web hosting and social media. The idea is to elevate the readers to new levels of usability, accessibility and understanding.\",\"url\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/author\/ujwala\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Must Know Secure Shell Commands For System Security","description":"Explore must-know secure shell commands that are necessary for working with files in Linux environments and how to utilize them.","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.milesweb.co.uk\/hosting-faqs\/secure-shell-commands\/","og_locale":"en_GB","og_type":"article","og_title":"Must Know Secure Shell Commands For System Security","og_description":"Explore must-know secure shell commands that are necessary for working with files in Linux environments and how to utilize them.","og_url":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/secure-shell-commands\/","og_site_name":"Web Hosting FAQs by MilesWeb","article_published_time":"2024-09-13T06:27:15+00:00","article_modified_time":"2024-09-13T06:27:16+00:00","author":"Ujwala","twitter_misc":{"Written by":"Ujwala","Estimated reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/secure-shell-commands\/","url":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/secure-shell-commands\/","name":"Must Know Secure Shell Commands For System Security","isPartOf":{"@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#website"},"datePublished":"2024-09-13T06:27:15+00:00","dateModified":"2024-09-13T06:27:16+00:00","author":{"@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/485f82549b85b9f4c82dc208c42964a8"},"description":"Explore must-know secure shell commands that are necessary for working with files in Linux environments and how to utilize them.","breadcrumb":{"@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/secure-shell-commands\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.milesweb.co.uk\/hosting-faqs\/secure-shell-commands\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/secure-shell-commands\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/"},{"@type":"ListItem","position":2,"name":"Must Know Secure Shell Commands For System Security"}]},{"@type":"WebSite","@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#website","url":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/","name":"Web Hosting FAQs by MilesWeb","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Person","@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/485f82549b85b9f4c82dc208c42964a8","name":"Ujwala","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/8d26ea4b9b2d83ae90b67f6bf5eefbca?s=96&d=blank&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8d26ea4b9b2d83ae90b67f6bf5eefbca?s=96&d=blank&r=g","caption":"Ujwala"},"description":"My aim is to create enriching content on topics related to SEO, web hosting and social media. The idea is to elevate the readers to new levels of usability, accessibility and understanding.","url":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/author\/ujwala\/"}]}},"views":0,"_links":{"self":[{"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/posts\/15948","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/comments?post=15948"}],"version-history":[{"count":1,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/posts\/15948\/revisions"}],"predecessor-version":[{"id":15949,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/posts\/15948\/revisions\/15949"}],"wp:attachment":[{"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/media?parent=15948"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/categories?post=15948"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-json\/wp\/v2\/tags?post=15948"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}