{"id":18432,"date":"2023-11-30T09:06:28","date_gmt":"2023-11-30T09:06:28","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=18432"},"modified":"2023-11-30T09:06:28","modified_gmt":"2023-11-30T09:06:28","slug":"date-command-linux-examples","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/","title":{"rendered":"date Command Linux Examples"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335174964-date%20Command%20Linux%20Examples%20.jpg\" alt=\"\" \/><br \/>\nIn the realm of Linux systems, the date command serves as a versatile tool for displaying and manipulating date and time information. From simply displaying the current date and time to formatting it for use in scripts or system logs, the date command offers a wide array of functionalities. This article aims to explore the capabilities of the date command in Linux, providing comprehensive examples that showcase its usage for displaying, setting, and formatting date and time information. By delving into practical examples, this guide aims to empower users with the knowledge to effectively utilize the date command in various scenarios within the Linux environment.<\/p>\n<h2>What is date command linux with examples?<\/h2>\n<p>The date command in Linux is a versatile utility used to display, set, or manipulate the system&#8217;s date and time information from the command line. It offers various options and formatting capabilities to show the current date and time in different formats, set the system clock, calculate elapsed time, and perform other date-related operations.<\/p>\n<p>Here are several examples illustrating the usage of the date command:<\/p>\n<p><strong>Example 1: Displaying the Current Date and Time<\/strong><\/p>\n<pre><code>date<\/code><\/pre>\n<p>This command will output the current date and time in the default format defined by the system.<\/p>\n<p><strong>Example 2: Formatting Date and Time<\/strong><\/p>\n<pre><code>date +\"%Y-%m-%d %H:%M:%S\u201d<\/code><\/pre>\n<p>This command formats the output to display the date and time in the YYYY-MM-DD HH:MM:SS format.<\/p>\n<p><strong>Example 3: Setting the System Date and Time<\/strong><\/p>\n<pre><code>sudo date -s \"2023-11-28 14:30:00\u201d<\/code><\/pre>\n<p>This command sets the system date and time to November 28, 2023, at 14:30:00. Note: This operation usually requires superuser privileges (sudo).<\/p>\n<p><strong>Example 4: Displaying the Date and Time in a Specific Timezone<\/strong><\/p>\n<pre><code>date -d 'TZ=\"America\/New_York\" 14:30\u2019<\/code><\/pre>\n<p>This command displays the date and time at 14:30 in the specified timezone (&quot;America\/New_York&quot; timezone in this case).<\/p>\n<p><strong>Example 5: Calculating Future or Past Dates<\/strong><\/p>\n<pre><code>date -d \"tomorrow\"\ndate -d \"2 days ago\u201d<\/code><\/pre>\n<p>These commands calculate and display the date for tomorrow and two days ago, respectively.<\/p>\n<p><strong>Example 6: Converting a Timestamp to a Readable Date<\/strong><\/p>\n<pre><code>date -d @1638097600<\/code><\/pre>\n<p>This command converts the UNIX timestamp 1638097600 to a readable date and time.<\/p>\n<p><strong>Example 7: Displaying Day of the Week<\/strong><\/p>\n<pre><code>date +\"%A\u201d<\/code><\/pre>\n<p>This command displays the current day of the week (e.g., Monday, Tuesday, etc.) using the %A format specifier.<\/p>\n<p><strong>Example 8: Displaying the Calendar of a Specific Month and Year<\/strong><\/p>\n<pre><code>cal 12 2023<\/code><\/pre>\n<p>This command displays the calendar for December 2023.<\/p>\n<p>The date command in Linux is highly flexible, offering a wide range of options for displaying, formatting, and manipulating date and time information, making it a powerful tool for system administrators, developers, and users handling various date-related tasks from the command line.<\/p>\n<p><strong>Conclusion<\/strong><br \/>\nThe date command in Linux stands as a fundamental utility for handling date and time-related operations within the command-line interface. Throughout this article, we&#8217;ve explored the diverse functionalities offered by the date command, showcasing its versatility in displaying, setting, and formatting date and time information.<\/p>\n<p>Whether it&#8217;s displaying the current date and time in a specific format, modifying timestamps, or incorporating date-related data into scripts, the date command offers an array of options. By mastering the date command&#8217;s syntax and understanding its numerous flags and formatting options, users can efficiently manage date and time information within their Linux systems.<\/p>\n<p>As a vital tool in the Linux command-line arsenal, the date command proves invaluable in various scenarios, from system administration tasks to script automation and log management. Its flexibility and ease of use make it a go-to solution for handling date and time-related operations, enhancing productivity within the Linux environment.<\/p>\n<h2>Frequently Asked Questions (FAQ) on date Command in Linux<\/h2>\n<p>Below are some FAQs related to Date Command in Linux.<\/p>\n<p><strong>Q1: How do I display the current date and time using the date command?<\/strong><br \/>\nYou can display the current date and time by simply typing date in the terminal.<\/p>\n<p><strong>Q2: How can I format the output of the date command?<\/strong><br \/>\nYou can format the date command output using formatting options like %Y for year, %m for month, %d for day, %H for hour, %M for minute, %S for second, and more. For example: date +&quot;%Y-%m-%d %H:%M:%S&quot; will display the date and time in the specified format.<\/p>\n<p><strong>Q3: How can I set the system date and time using the date command?<\/strong><br \/>\nTo set the system date and time, use the date command with the -s flag followed by the desired date and time. For example: sudo date -s &quot;2023-11-28 14:30:00&quot;.<\/p>\n<p><strong>Q4: Can I display the date and time of a specific timezone?<\/strong><br \/>\nYes, you can display the date and time of a specific timezone using the -d flag followed by the timezone. For example: date -d &#8216;TZ=&quot;America\/New_York&quot; 14:30&#8217;.<\/p>\n<p><strong>Q5: How can I calculate future or past dates using the date command?<\/strong><br \/>\nYou can calculate future or past dates by using relative time expressions with the -d flag. For instance: date -d &quot;tomorrow&quot;, date -d &quot;2 days ago&quot;, etc.<\/p>\n<p><strong>Q6: How do I convert a timestamp to a readable date using the date command?<\/strong><br \/>\nYou can convert a timestamp to a readable date by using the -d flag followed by the timestamp. For example: date -d @1638097600.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In the realm of Linux systems, the date command serves as a versatile tool for displaying and manipulating date and time information. From simply displaying the current date and time to formatting it for use in scripts or system logs, the date command offers a wide array of functionalities. This article aims to explore the [&hellip;]<\/p>\n","protected":false},"author":52,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[230],"tags":[],"class_list":["post-18432","post","type-post","status-publish","format-standard","hentry","category-linux"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>date Command Linux Examples<\/title>\n<meta name=\"description\" content=\"The date command in Linux is a versatile utility used to display, set, or manipulate the system\u2019s date and time information from the command line.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"date Command Linux Examples\" \/>\n<meta property=\"og:description\" content=\"The date command in Linux is a versatile utility used to display, set, or manipulate the system\u2019s date and time information from the command line.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/\" \/>\n<meta property=\"og:site_name\" content=\"PrepBytes Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prepbytes0211\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-11-30T09:06:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335174964-date%20Command%20Linux%20Examples%20.jpg\" \/>\n<meta name=\"author\" content=\"Prepbytes\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prepbytes\" \/>\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:\/\/prepbytes.com\/blog\/date-command-linux-examples\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"date Command Linux Examples\",\"datePublished\":\"2023-11-30T09:06:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/\"},\"wordCount\":841,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335174964-date%20Command%20Linux%20Examples%20.jpg\",\"articleSection\":[\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/\",\"name\":\"date Command Linux Examples\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335174964-date%20Command%20Linux%20Examples%20.jpg\",\"datePublished\":\"2023-11-30T09:06:28+00:00\",\"description\":\"The date command in Linux is a versatile utility used to display, set, or manipulate the system\u2019s date and time information from the command line.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335174964-date%20Command%20Linux%20Examples%20.jpg\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335174964-date%20Command%20Linux%20Examples%20.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/43.205.93.38\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Linux\",\"item\":\"https:\/\/prepbytes.com\/blog\/category\/linux\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"date Command Linux Examples\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/43.205.93.38\/#website\",\"url\":\"http:\/\/43.205.93.38\/\",\"name\":\"PrepBytes Blog\",\"description\":\"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING\",\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/43.205.93.38\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/43.205.93.38\/#organization\",\"name\":\"Prepbytes\",\"url\":\"http:\/\/43.205.93.38\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"contentUrl\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"width\":160,\"height\":160,\"caption\":\"Prepbytes\"},\"image\":{\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/prepbytes0211\/\",\"https:\/\/www.instagram.com\/prepbytes\/\",\"https:\/\/www.linkedin.com\/company\/prepbytes\/\",\"https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\",\"name\":\"Prepbytes\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"caption\":\"Prepbytes\"},\"url\":\"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"date Command Linux Examples","description":"The date command in Linux is a versatile utility used to display, set, or manipulate the system\u2019s date and time information from the command line.","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:\/\/prepbytes.com\/blog\/date-command-linux-examples\/","og_locale":"en_US","og_type":"article","og_title":"date Command Linux Examples","og_description":"The date command in Linux is a versatile utility used to display, set, or manipulate the system\u2019s date and time information from the command line.","og_url":"https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2023-11-30T09:06:28+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335174964-date%20Command%20Linux%20Examples%20.jpg","type":"","width":"","height":""}],"author":"Prepbytes","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Prepbytes","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"date Command Linux Examples","datePublished":"2023-11-30T09:06:28+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/"},"wordCount":841,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335174964-date%20Command%20Linux%20Examples%20.jpg","articleSection":["Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/","url":"https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/","name":"date Command Linux Examples","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335174964-date%20Command%20Linux%20Examples%20.jpg","datePublished":"2023-11-30T09:06:28+00:00","description":"The date command in Linux is a versatile utility used to display, set, or manipulate the system\u2019s date and time information from the command line.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335174964-date%20Command%20Linux%20Examples%20.jpg","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335174964-date%20Command%20Linux%20Examples%20.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/date-command-linux-examples\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/43.205.93.38\/"},{"@type":"ListItem","position":2,"name":"Linux","item":"https:\/\/prepbytes.com\/blog\/category\/linux\/"},{"@type":"ListItem","position":3,"name":"date Command Linux Examples"}]},{"@type":"WebSite","@id":"http:\/\/43.205.93.38\/#website","url":"http:\/\/43.205.93.38\/","name":"PrepBytes Blog","description":"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING","publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/43.205.93.38\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/43.205.93.38\/#organization","name":"Prepbytes","url":"http:\/\/43.205.93.38\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/","url":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","contentUrl":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","width":160,"height":160,"caption":"Prepbytes"},"image":{"@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/prepbytes0211\/","https:\/\/www.instagram.com\/prepbytes\/","https:\/\/www.linkedin.com\/company\/prepbytes\/","https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA"]},{"@type":"Person","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e","name":"Prepbytes","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","caption":"Prepbytes"},"url":"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/"}]}},"_links":{"self":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18432","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/users\/52"}],"replies":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/comments?post=18432"}],"version-history":[{"count":2,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18432\/revisions"}],"predecessor-version":[{"id":18457,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18432\/revisions\/18457"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=18432"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=18432"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=18432"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}