{"id":12,"date":"2025-11-19T15:57:54","date_gmt":"2025-11-19T15:57:54","guid":{"rendered":"https:\/\/promakai.com\/labs\/?p=12"},"modified":"2025-11-19T15:58:32","modified_gmt":"2025-11-19T15:58:32","slug":"globbing-in-linux-simple-guide","status":"publish","type":"post","link":"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/","title":{"rendered":"Understanding Globbing in Linux: A Simple Guide"},"content":{"rendered":"\n<p>If you\u2019ve ever used the <a href=\"https:\/\/promakai.com\/linux\"  rel=\"noreferrer noopener\">Linux<\/a> terminal, you\u2019ve likely seen symbols like *, ?, or [] inside commands. These aren\u2019t random characters \u2014 they\u2019re part of a powerful pattern-matching system called globbing.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-what-exactly-is-globbing\">What Exactly Is Globbing?<\/h2>\n\n\n\n<p>Globbing helps you match multiple files at once without typing every filename manually. It\u2019s fast, efficient, and built directly into the shell.<\/p>\n\n\n\n<p>Globbing is the shell\u2019s way of expanding wildcard patterns into filenames. Instead of writing long lists of files, you can use patterns to match groups automatically.<\/p>\n\n\n\n<p>For example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ls *.txt\n<\/code><\/pre>\n\n\n\n<p>This lists all .txt files in the directory \u2014 no extra steps needed.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-common-globbing-patterns\">Common Globbing Patterns<\/h2>\n\n\n\n<p>Here are the patterns you\u2019ll use most:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>* (asterisk) \u2013 matches any number of characters<\/li>\n\n\n\n<li>rm *.log \u2192 deletes files ending in .log<\/li>\n\n\n\n<li>? (question mark) \u2013 matches exactly one character<\/li>\n\n\n\n<li>ls file?.txt \u2192 matches file1.txt, fileA.txt, etc.<\/li>\n\n\n\n<li><a href=\"brackets\"><\/a> \u2013 match a set or range<\/li>\n\n\n\n<li>ls photo[1-5].jpg \u2192 matches photo1.jpg to photo5.jpg<\/li>\n\n\n\n<li>ls file[abc].txt \u2192 matches filea.txt, fileb.txt, filec.txt<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-brace-expansion-not-globbing-but-useful\">Brace Expansion: Not Globbing, But Useful<\/h2>\n\n\n\n<p>You might see people use braces like {}:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mkdir {2024..2026}\n<\/code><\/pre>\n\n\n\n<p>This creates 2024, 2025, and 2026.<br>It looks similar to globbing, but it\u2019s actually handled before globbing by the shell.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-why-globbing-matters\">Why Globbing Matters<\/h2>\n\n\n\n<p>Globbing speeds up your workflow by allowing the shell to handle pattern matching for you. Instead of typing dozens of filenames or crafting complicated scripts, you can control groups of files using just a few characters.<\/p>\n\n\n\n<p>It\u2019s an essential skill for:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>developers<\/li>\n\n\n\n<li>sysadmins<\/li>\n\n\n\n<li>automation scripts<\/li>\n\n\n\n<li>anyone working heavily in the terminal<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-try-it-yourself\"> Try It Yourself<\/h2>\n\n\n\n<p>Open your terminal and test:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>touch test1.txt test2.txt test3.log\nls *.txt\nls test?.*\nls test&#91;1-2].txt\n<\/code><\/pre>\n\n\n\n<p>You\u2019ll instantly see how globbing expands your patterns into real filenames.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you\u2019ve ever used the Linux terminal, you\u2019ve likely seen symbols like *, ?, or [] inside commands. These aren\u2019t random characters \u2014 they\u2019re part of a powerful pattern-matching system called globbing. What Exactly Is Globbing? Globbing helps you match multiple files at once without typing every filename manually. It\u2019s fast, efficient, and built directly &#8230; <a title=\"Understanding Globbing in Linux: A Simple Guide\" class=\"read-more\" href=\"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/\" aria-label=\"Read more about Understanding Globbing in Linux: A Simple Guide\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":18,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[],"class_list":["post-12","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.3 (Yoast SEO v26.8) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Understanding Globbing in Linux: A Simple Guide &#8212; PromakAI Labs<\/title>\n<meta name=\"description\" content=\"If you\u2019ve ever used the Linux terminal, you\u2019ve likely seen symbols like *, ?, or [] inside commands. These aren\u2019t random characters \u2014 they\u2019re part of a powerful pattern-matching system called globbing.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Understanding Globbing in Linux: A Simple Guide\" \/>\n<meta property=\"og:description\" content=\"If you\u2019ve ever used the Linux terminal, you\u2019ve likely seen symbols like *, ?, or [] inside commands. These aren\u2019t random characters \u2014 they\u2019re part of a powerful pattern-matching system called globbing.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"PromakAI Labs\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/promakai\" \/>\n<meta property=\"article:author\" content=\"https:\/\/facebook.com\/promakai\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-19T15:57:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-19T15:58:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/promakai.com\/labs\/wp-content\/uploads\/sites\/3\/2025\/11\/globbing-linux.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1022\" \/>\n\t<meta property=\"og:image:height\" content=\"754\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Dev Unix\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@PromakAI\" \/>\n<meta name=\"twitter:site\" content=\"@promakai\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Dev Unix\" \/>\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:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/\"},\"author\":{\"name\":\"Dev Unix\",\"@id\":\"https:\/\/promakai.com\/labs\/#\/schema\/person\/b07ad88d801a13f8fd59a44190758091\"},\"headline\":\"Understanding Globbing in Linux: A Simple Guide\",\"datePublished\":\"2025-11-19T15:57:54+00:00\",\"dateModified\":\"2025-11-19T15:58:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/\"},\"wordCount\":278,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/promakai.com\/labs\/#organization\"},\"image\":{\"@id\":\"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/promakai.com\/labs\/wp-content\/uploads\/sites\/3\/2025\/11\/globbing-linux.webp\",\"articleSection\":[\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/\",\"url\":\"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/\",\"name\":\"Understanding Globbing in Linux: A Simple Guide &#8212; PromakAI Labs\",\"isPartOf\":{\"@id\":\"https:\/\/promakai.com\/labs\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/promakai.com\/labs\/wp-content\/uploads\/sites\/3\/2025\/11\/globbing-linux.webp\",\"datePublished\":\"2025-11-19T15:57:54+00:00\",\"dateModified\":\"2025-11-19T15:58:32+00:00\",\"description\":\"If you\u2019ve ever used the Linux terminal, you\u2019ve likely seen symbols like *, ?, or [] inside commands. These aren\u2019t random characters \u2014 they\u2019re part of a powerful pattern-matching system called globbing.\",\"breadcrumb\":{\"@id\":\"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/#primaryimage\",\"url\":\"https:\/\/promakai.com\/labs\/wp-content\/uploads\/sites\/3\/2025\/11\/globbing-linux.webp\",\"contentUrl\":\"https:\/\/promakai.com\/labs\/wp-content\/uploads\/sites\/3\/2025\/11\/globbing-linux.webp\",\"width\":1022,\"height\":754,\"caption\":\"Understanding Globbing in Linux: A Simple Guide\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/promakai.com\/labs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Understanding Globbing in Linux: A Simple Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/promakai.com\/labs\/#website\",\"url\":\"https:\/\/promakai.com\/labs\/\",\"name\":\"PromakAI Labs\",\"description\":\"Open Experiments in AI &amp; Automation\",\"publisher\":{\"@id\":\"https:\/\/promakai.com\/labs\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/promakai.com\/labs\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/promakai.com\/labs\/#organization\",\"name\":\"PromakAI\",\"alternateName\":\"PromakAI Labs\",\"url\":\"https:\/\/promakai.com\/labs\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/promakai.com\/labs\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/promakai.com\/labs\/wp-content\/uploads\/sites\/3\/2025\/11\/promakai-logo1.png\",\"contentUrl\":\"https:\/\/promakai.com\/labs\/wp-content\/uploads\/sites\/3\/2025\/11\/promakai-logo1.png\",\"width\":1024,\"height\":1024,\"caption\":\"PromakAI\"},\"image\":{\"@id\":\"https:\/\/promakai.com\/labs\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/facebook.com\/promakai\",\"https:\/\/x.com\/promakai\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/promakai.com\/labs\/#\/schema\/person\/b07ad88d801a13f8fd59a44190758091\",\"name\":\"Dev Unix\",\"pronouns\":\"he\/him\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/promakai.com\/labs\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/22ec3ea682c380a274860637729a773eab4d948e2517564a6e0323261df97fea?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/22ec3ea682c380a274860637729a773eab4d948e2517564a6e0323261df97fea?s=96&d=mm&r=g\",\"caption\":\"Dev Unix\"},\"description\":\"Dev Unix is a Linux enthusiast, developer, and technology writer at PromakAI. Focused on open-source systems, automation, and digital freedom.\",\"sameAs\":[\"https:\/\/promakai.com\",\"https:\/\/facebook.com\/promakai\",\"https:\/\/instagram.com\/promakai\",\"https:\/\/linkedin.com\/in\/promakai\",\"https:\/\/pinterest.com\/promakai\/\",\"https:\/\/x.com\/PromakAI\"],\"url\":\"https:\/\/promakai.com\/labs\/author\/promakai\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Understanding Globbing in Linux: A Simple Guide &#8212; PromakAI Labs","description":"If you\u2019ve ever used the Linux terminal, you\u2019ve likely seen symbols like *, ?, or [] inside commands. These aren\u2019t random characters \u2014 they\u2019re part of a powerful pattern-matching system called globbing.","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:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/","og_locale":"en_US","og_type":"article","og_title":"Understanding Globbing in Linux: A Simple Guide","og_description":"If you\u2019ve ever used the Linux terminal, you\u2019ve likely seen symbols like *, ?, or [] inside commands. These aren\u2019t random characters \u2014 they\u2019re part of a powerful pattern-matching system called globbing.","og_url":"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/","og_site_name":"PromakAI Labs","article_publisher":"https:\/\/facebook.com\/promakai","article_author":"https:\/\/facebook.com\/promakai","article_published_time":"2025-11-19T15:57:54+00:00","article_modified_time":"2025-11-19T15:58:32+00:00","og_image":[{"width":1022,"height":754,"url":"https:\/\/promakai.com\/labs\/wp-content\/uploads\/sites\/3\/2025\/11\/globbing-linux.webp","type":"image\/webp"}],"author":"Dev Unix","twitter_card":"summary_large_image","twitter_creator":"@PromakAI","twitter_site":"@promakai","twitter_misc":{"Written by":"Dev Unix","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/#article","isPartOf":{"@id":"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/"},"author":{"name":"Dev Unix","@id":"https:\/\/promakai.com\/labs\/#\/schema\/person\/b07ad88d801a13f8fd59a44190758091"},"headline":"Understanding Globbing in Linux: A Simple Guide","datePublished":"2025-11-19T15:57:54+00:00","dateModified":"2025-11-19T15:58:32+00:00","mainEntityOfPage":{"@id":"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/"},"wordCount":278,"commentCount":0,"publisher":{"@id":"https:\/\/promakai.com\/labs\/#organization"},"image":{"@id":"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/promakai.com\/labs\/wp-content\/uploads\/sites\/3\/2025\/11\/globbing-linux.webp","articleSection":["Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/","url":"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/","name":"Understanding Globbing in Linux: A Simple Guide &#8212; PromakAI Labs","isPartOf":{"@id":"https:\/\/promakai.com\/labs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/#primaryimage"},"image":{"@id":"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/promakai.com\/labs\/wp-content\/uploads\/sites\/3\/2025\/11\/globbing-linux.webp","datePublished":"2025-11-19T15:57:54+00:00","dateModified":"2025-11-19T15:58:32+00:00","description":"If you\u2019ve ever used the Linux terminal, you\u2019ve likely seen symbols like *, ?, or [] inside commands. These aren\u2019t random characters \u2014 they\u2019re part of a powerful pattern-matching system called globbing.","breadcrumb":{"@id":"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/#primaryimage","url":"https:\/\/promakai.com\/labs\/wp-content\/uploads\/sites\/3\/2025\/11\/globbing-linux.webp","contentUrl":"https:\/\/promakai.com\/labs\/wp-content\/uploads\/sites\/3\/2025\/11\/globbing-linux.webp","width":1022,"height":754,"caption":"Understanding Globbing in Linux: A Simple Guide"},{"@type":"BreadcrumbList","@id":"https:\/\/promakai.com\/labs\/globbing-in-linux-simple-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/promakai.com\/labs\/"},{"@type":"ListItem","position":2,"name":"Understanding Globbing in Linux: A Simple Guide"}]},{"@type":"WebSite","@id":"https:\/\/promakai.com\/labs\/#website","url":"https:\/\/promakai.com\/labs\/","name":"PromakAI Labs","description":"Open Experiments in AI &amp; Automation","publisher":{"@id":"https:\/\/promakai.com\/labs\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/promakai.com\/labs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/promakai.com\/labs\/#organization","name":"PromakAI","alternateName":"PromakAI Labs","url":"https:\/\/promakai.com\/labs\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/promakai.com\/labs\/#\/schema\/logo\/image\/","url":"https:\/\/promakai.com\/labs\/wp-content\/uploads\/sites\/3\/2025\/11\/promakai-logo1.png","contentUrl":"https:\/\/promakai.com\/labs\/wp-content\/uploads\/sites\/3\/2025\/11\/promakai-logo1.png","width":1024,"height":1024,"caption":"PromakAI"},"image":{"@id":"https:\/\/promakai.com\/labs\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/facebook.com\/promakai","https:\/\/x.com\/promakai"]},{"@type":"Person","@id":"https:\/\/promakai.com\/labs\/#\/schema\/person\/b07ad88d801a13f8fd59a44190758091","name":"Dev Unix","pronouns":"he\/him","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/promakai.com\/labs\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/22ec3ea682c380a274860637729a773eab4d948e2517564a6e0323261df97fea?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/22ec3ea682c380a274860637729a773eab4d948e2517564a6e0323261df97fea?s=96&d=mm&r=g","caption":"Dev Unix"},"description":"Dev Unix is a Linux enthusiast, developer, and technology writer at PromakAI. Focused on open-source systems, automation, and digital freedom.","sameAs":["https:\/\/promakai.com","https:\/\/facebook.com\/promakai","https:\/\/instagram.com\/promakai","https:\/\/linkedin.com\/in\/promakai","https:\/\/pinterest.com\/promakai\/","https:\/\/x.com\/PromakAI"],"url":"https:\/\/promakai.com\/labs\/author\/promakai\/"}]}},"_links":{"self":[{"href":"https:\/\/promakai.com\/labs\/wp-json\/wp\/v2\/posts\/12","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/promakai.com\/labs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/promakai.com\/labs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/promakai.com\/labs\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/promakai.com\/labs\/wp-json\/wp\/v2\/comments?post=12"}],"version-history":[{"count":3,"href":"https:\/\/promakai.com\/labs\/wp-json\/wp\/v2\/posts\/12\/revisions"}],"predecessor-version":[{"id":17,"href":"https:\/\/promakai.com\/labs\/wp-json\/wp\/v2\/posts\/12\/revisions\/17"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/promakai.com\/labs\/wp-json\/wp\/v2\/media\/18"}],"wp:attachment":[{"href":"https:\/\/promakai.com\/labs\/wp-json\/wp\/v2\/media?parent=12"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/promakai.com\/labs\/wp-json\/wp\/v2\/categories?post=12"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/promakai.com\/labs\/wp-json\/wp\/v2\/tags?post=12"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}