{"id":6,"date":"2012-06-17T06:37:00","date_gmt":"2012-06-17T06:37:00","guid":{"rendered":"http:\/\/pheonixsolutions.com\/?p=6"},"modified":"2026-07-29T19:40:22","modified_gmt":"2026-07-29T14:10:22","slug":"remove-a-space-in-front-of-a-words-in-a-file","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/remove-a-space-in-front-of-a-words-in-a-file\/","title":{"rendered":"How to Remove a space in front of a word in a file"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<p>When working with configuration files, scripts, log files, or text documents, you may encounter unwanted leading spaces before specific words. These extra spaces can affect formatting, cause parsing issues, or result in errors in scripts and configuration files. Linux provides several command-line utilities, such as <code>sed<\/code>, <code>awk<\/code>, and <code>perl<\/code>, to efficiently remove leading spaces from words or lines. This guide explains how to remove a space in front of a word within a file while preserving the rest of the file&#8217;s content.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<p>Before proceeding, ensure the following:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Access to a Linux system with terminal access.<\/li>\n\n\n\n<li>Appropriate read and write permissions for the target file.<\/li>\n\n\n\n<li>A backup of the file before making modifications (recommended).<\/li>\n\n\n\n<li>Basic familiarity with Linux command-line operations.<\/li>\n\n\n\n<li>Standard text-processing utilities such as <code>sed<\/code>, <code>awk<\/code>, or <code>perl<\/code> installed on the system<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">IMPLEMENTATION<\/h2>\n\n\n<div dir=\"ltr\" style=\"text-align: left;\"><strong><br \/><\/strong>This is a simple script to show how to remove space in a front of a word from a file. You can learn about this simple command for removing the space in front of a word and execute it fr<span style=\"font-size: revert; color: initial;\">om your end. I was trying to do this using various commands and scripts. but I was unsuccessful in doing it. Later, I just used a simple method to remove the space in front of a word in a file. I&#8217;m very happy to share the same with you.<\/span>\n<p><strong><br \/><\/strong>Just use this command to remove the space in front.<\/p>\n<div style=\"margin: 0px; text-indent: 0px;\"><strong><span style=\"font-size: small;\"><span style=\"font-family: 'DejaVu Sans';\">cat filename |cut -d&#8221;:&#8221; -f2 |sort | sed -e &#8216;s\/^[ \\t]*\/\/&#8217;<\/span><\/span><\/strong><\/div>\n<div style=\"margin: 0px; text-indent: 0px;\">\u00a0<\/div>\n<div style=\"margin: 0px; text-indent: 0px;\">cat filename &#8211; This will show you all the contents in a file name<\/div>\n<div style=\"margin: 0px; text-indent: 0px;\">\u00a0<\/div>\n<div style=\"margin: 0px; text-indent: 0px;\"><strong># cat filename<\/strong><\/div>\n<div style=\"margin: 0px; text-indent: 0px;\">\u00c2\u00a0 arun<\/div>\n<div style=\"margin: 0px; text-indent: 0px;\">\u00c2\u00a0hemanth<\/div>\n<div style=\"margin: 0px; text-indent: 0px;\">\u00c2\u00a0\u00c2\u00a0\u00c2\u00a0\u00c2\u00a0 :karthick<\/div>\n<div style=\"margin: 0px; text-indent: 0px;\">madhan<\/div>\n<div style=\"margin: 0px; text-indent: 0px;\">\u00c2\u00a0 Dhanasekar<\/div>\n<div style=\"margin: 0px; text-indent: 0px;\">\u00a0<\/div>\n<div style=\"margin: 0px; text-indent: 0px;\"><strong>cut -d&#8221;:&#8221; -f2<\/strong> &#8211; this will remove : if there are any before a word. -f2 is field 2<\/div>\n<div style=\"margin: 0px; text-indent: 0px;\"><strong>sort &#8211;<\/strong> sorting the output in a order<\/div>\n<div style=\"margin: 0px; text-indent: 0px;\"><strong>sed -e &#8216;s\/^[ \\t]*\/\/&#8217;<\/strong><\/div>\n<div style=\"margin: 0px; text-indent: 0px;\">\u00a0<\/div>\n<div style=\"margin: 0px; text-indent: 0px;\"><strong># cat c |cut -d&#8221;:&#8221; -f2 |sort | sed -e &#8216;s\/^[ \\t]*\/\/&#8217;<\/strong><br \/>arun<br \/>Dhanasekar<br \/>hemanth<br \/>karthick<br \/>madhan<\/div>\n<h1 style=\"margin: 0px; text-indent: 0px;\"><span style=\"font-size: small;\"><span style=\"font-family: 'DejaVu Sans';\">Now it will show you the output. If you want the output added inside a file just use t<span style=\"box-sizing: border-box; margin: 0px; padding: 0px;\">fr<span style=\"color: initial; font-size: revert;\">om<\/span><\/span>his\u00c2\u00a0<\/span><\/span><\/h1>\n<div style=\"margin: 0px; text-indent: 0px;\">\u00a0<\/div>\n<div style=\"margin: 0px; text-indent: 0px;\"><strong><span style=\"font-size: small;\"><span style=\"font-family: 'DejaVu Sans';\">\u00c2\u00a0<\/span><\/span><\/strong><strong><span style=\"font-size: small;\"><span style=\"font-family: 'DejaVu Sans';\">cat filename |cut -d&#8221;:&#8221; -f2 |sort | sed -e &#8216;s\/^[ \\t]*\/\/&#8217; &gt; filename.txt<\/span><\/span><\/strong><\/div>\n<\/div>\n<div>\u00a0<\/div>\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Removing unwanted spaces from a file helps maintain consistent formatting and prevents issues in scripts, configuration files, and text processing tasks. By using Linux text-processing utilities, you can quickly remove leading spaces from specific words or entire lines with minimal effort. After making the changes, it is recommended to verify the file&#8217;s contents to ensure the formatting is correct and no unintended modifications have been introduced.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction When working with configuration files, scripts, log files, or text documents, you may encounter unwanted leading spaces before specific words. These extra spaces can affect formatting, cause parsing issues, or result in errors in scripts and configuration files. Linux provides several command-line utilities, such as sed, awk, and perl,&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/remove-a-space-in-front-of-a-words-in-a-file\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">How to Remove a space in front of a word in a file<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[222,223],"tags":[],"class_list":{"0":"post-6","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-linux-commandsscripts","7":"category-shell-script","8":"h-entry","10":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Remove a space in front of a word in a file<\/title>\n<meta name=\"description\" content=\"This is a simple script to show how to remove space in a front of a word from a file.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/remove-a-space-in-front-of-a-words-in-a-file\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Remove a space in front of a word in a file\" \/>\n<meta property=\"og:description\" content=\"This is a simple script to show how to remove space in a front of a word from a file.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/remove-a-space-in-front-of-a-words-in-a-file\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2012-06-17T06:37:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-29T14:10:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/remove-a-space-in-front-of-a-words-in-a-file\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/remove-a-space-in-front-of-a-words-in-a-file\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"How to Remove a space in front of a word in a file\",\"datePublished\":\"2012-06-17T06:37:00+00:00\",\"dateModified\":\"2026-07-29T14:10:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/remove-a-space-in-front-of-a-words-in-a-file\\\/\"},\"wordCount\":414,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"articleSection\":[\"Linux Commands\\\/Scripts\",\"Shell script\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/remove-a-space-in-front-of-a-words-in-a-file\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/remove-a-space-in-front-of-a-words-in-a-file\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/remove-a-space-in-front-of-a-words-in-a-file\\\/\",\"name\":\"Remove a space in front of a word in a file\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2012-06-17T06:37:00+00:00\",\"dateModified\":\"2026-07-29T14:10:22+00:00\",\"description\":\"This is a simple script to show how to remove space in a front of a word from a file.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/remove-a-space-in-front-of-a-words-in-a-file\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/remove-a-space-in-front-of-a-words-in-a-file\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/remove-a-space-in-front-of-a-words-in-a-file\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Remove a space in front of a word in a file\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/pheonixsolutions.com\\\/blog\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Remove a space in front of a word in a file","description":"This is a simple script to show how to remove space in a front of a word from a file.","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:\/\/pheonixsolutions.com\/blog\/remove-a-space-in-front-of-a-words-in-a-file\/","og_locale":"en_US","og_type":"article","og_title":"Remove a space in front of a word in a file","og_description":"This is a simple script to show how to remove space in a front of a word from a file.","og_url":"https:\/\/pheonixsolutions.com\/blog\/remove-a-space-in-front-of-a-words-in-a-file\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2012-06-17T06:37:00+00:00","article_modified_time":"2026-07-29T14:10:22+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/remove-a-space-in-front-of-a-words-in-a-file\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/remove-a-space-in-front-of-a-words-in-a-file\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"How to Remove a space in front of a word in a file","datePublished":"2012-06-17T06:37:00+00:00","dateModified":"2026-07-29T14:10:22+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/remove-a-space-in-front-of-a-words-in-a-file\/"},"wordCount":414,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"articleSection":["Linux Commands\/Scripts","Shell script"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/remove-a-space-in-front-of-a-words-in-a-file\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/remove-a-space-in-front-of-a-words-in-a-file\/","url":"https:\/\/pheonixsolutions.com\/blog\/remove-a-space-in-front-of-a-words-in-a-file\/","name":"Remove a space in front of a word in a file","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2012-06-17T06:37:00+00:00","dateModified":"2026-07-29T14:10:22+00:00","description":"This is a simple script to show how to remove space in a front of a word from a file.","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/remove-a-space-in-front-of-a-words-in-a-file\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/remove-a-space-in-front-of-a-words-in-a-file\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/remove-a-space-in-front-of-a-words-in-a-file\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Remove a space in front of a word in a file"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","caption":"admin"},"sameAs":["http:\/\/pheonixsolutions.com\/blog"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-6","jetpack_sharing_enabled":true,"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/6","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=6"}],"version-history":[{"count":1,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/6\/revisions"}],"predecessor-version":[{"id":10593,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/6\/revisions\/10593"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=6"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=6"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=6"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}