{"id":18434,"date":"2023-11-30T09:10:44","date_gmt":"2023-11-30T09:10:44","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=18434"},"modified":"2023-11-30T09:10:44","modified_gmt":"2023-11-30T09:10:44","slug":"nohup-command-in-linux-with-examples","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/nohup-command-in-linux-with-examples\/","title":{"rendered":"nohup Command in Linux with Examples"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335430610-nohup%20Command%20in%20Linux%20with%20Examples%20.jpg\" alt=\"\" \/><br \/>\nThe world of Linux commands offers a multitude of functionalities, some of which empower users to execute tasks efficiently without being bound to a terminal session. Among these commands, nohup stands out as a versatile tool, enabling users to run processes that persist even after exiting a terminal session. Short for &quot;no hang up,&quot; nohup ensures that a process continues running in the background, unaffected by the termination of the terminal. This article aims to delve into the intricacies of the nohup command in Linux, elucidating its usage, practical examples, and answering common queries to help users leverage this command effectively.<\/p>\n<h2>What is the nohup command in Linux with Examples?<\/h2>\n<p>The nohup command in Linux stands for &quot;no hang up.&quot; It allows users to execute commands or processes that continue running even after they log out of the terminal or close the session. This command is particularly useful for executing long-running tasks or processes that you want to keep running in the background without being terminated when the terminal session ends.<\/p>\n<p>Here are some examples illustrating the usage of the nohup command:<\/p>\n<p><strong>Example 1: Basic Usage<\/strong><br \/>\nExecuting a command with nohup:<\/p>\n<pre><code>nohup .\/my_script.sh &amp;<\/code><\/pre>\n<ul>\n<li>.\/my_script.sh is the script or command you want to execute.<\/li>\n<li>&amp; at the end puts the process in the background.<\/li>\n<\/ul>\n<p><strong>Example 2: Running a Command with Output Redirection<\/strong><br \/>\nRunning a command with nohup and redirecting output to a file:<\/p>\n<pre><code>nohup python my_script.py &gt; output.log 2&gt;&amp;1 &amp;\npython my_script.py is the command or script to be executed.\n&gt; output.log redirects standard output to a file named output.log.\n2&gt;&amp;1 redirects standard error (stderr) to the same file as standard output.\n&amp; puts the process in the background.<\/code><\/pre>\n<p><strong>Example 3: Stopping a Process Started with nohup<\/strong><br \/>\nTo stop a process started with nohup, you need to find its process ID (PID) using the ps command and then use kill to terminate it.<\/p>\n<p>First, find the process ID (PID) using ps:<\/p>\n<pre><code>ps aux | grep my_script.py<\/code><\/pre>\n<p>This will display information about the running process. Identify the PID from the output and use kill to stop it:<\/p>\n<pre><code>kill PID<\/code><\/pre>\n<p>Replace PID with the actual process ID obtained from the ps command output.<\/p>\n<p><strong>Example 4: Checking Running nohup Processes<\/strong><br \/>\nTo check for currently running processes started with nohup, you can use the ps command with options to display information about processes.<\/p>\n<pre><code>ps aux | grep nohup<\/code><\/pre>\n<p>This will display a list of processes that were started with nohup.<\/p>\n<p><strong>Example 5: Running Multiple Commands with nohup<\/strong><br \/>\nYou can execute multiple commands sequentially using nohup by chaining them with &amp;&amp;:<\/p>\n<pre><code>nohup command1 &amp;&amp; command2 &amp;&amp; command3 &amp;<\/code><\/pre>\n<p>This will execute command1, command2, and command3 sequentially, and if each command succeeds (commandX returns a zero exit status), the subsequent command will be executed.<\/p>\n<p><strong>Example 6: Using nohup with ssh<\/strong><br \/>\nExecuting a command on a remote server via SSH using nohup:<\/p>\n<pre><code>ssh user@remote_server 'nohup .\/my_script.sh &gt; output.log 2&gt;&amp;1 &amp;\u2019<\/code><\/pre>\n<ul>\n<li>This connects to remote_server as user and runs .\/my_script.sh with nohup, redirecting output to output.log.<\/li>\n<\/ul>\n<p><strong>Conclusion<\/strong><br \/>\nIn conclusion, the nohup command in Linux is a valuable asset for executing processes that demand autonomy from terminal sessions. Its capability to sustain processes beyond user logouts or session terminations ensures seamless execution of long-running tasks, server processes, or scripts. By understanding its usage, incorporating best practices for output handling, and navigating its nuances, users can harness the power of nohup to manage tasks effectively within the Linux command line environment.<\/p>\n<h2>Frequently Asked Questions (FAQ) on nohup in Linux<\/h2>\n<p>Below are some FAQs on nohup in Linux<\/p>\n<p><strong>Q1: What does nohup stand for?<\/strong><br \/>\nnohup is short for &quot;no hang up.&quot; It ensures that a process remains running even after the user logs out or terminates the terminal session.<\/p>\n<p><strong>Q2: How do I use nohup?<\/strong><br \/>\nTo use nohup, simply prepend it to the command you want to execute, followed by the command itself. For instance: nohup my_long_running_command &amp;.<\/p>\n<p><strong>Q3: How can I redirect the output of a nohup command?<\/strong><br \/>\nYou can redirect the output of a nohup command to a file using shell redirection. For example: nohup my_command &gt; output.log 2&gt;&amp;1 &amp;.<\/p>\n<p><strong>Q4: Can I stop a process started with nohup?<\/strong><br \/>\nYes, you can stop a process started with nohup using standard Linux commands like kill or killall.<\/p>\n<p><strong>Q5: When should I use nohup?<\/strong><br \/>\nUse nohup when you want to initiate a process that should continue running even after you log out or terminate your terminal session. It&#8217;s particularly useful for long-running tasks, server processes, or automated scripts.<\/p>\n<p><strong>Q6: Are there any limitations or considerations when using nohup?<\/strong><br \/>\nWhile nohup is useful, it&#8217;s essential to manage outputs, errors, and logs appropriately. Ensure that you redirect outputs to files or handle them to prevent cluttering the terminal or missing important information.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The world of Linux commands offers a multitude of functionalities, some of which empower users to execute tasks efficiently without being bound to a terminal session. Among these commands, nohup stands out as a versatile tool, enabling users to run processes that persist even after exiting a terminal session. Short for &quot;no hang up,&quot; nohup [&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-18434","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>nohup Command in Linux with Examples<\/title>\n<meta name=\"description\" content=\"The nohup command in Linux stands for \u201cno hang up. It allows users to execute commands or processes that continue running even after they log out of the terminal or close the session.\" \/>\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\/nohup-command-in-linux-with-examples\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"nohup Command in Linux with Examples\" \/>\n<meta property=\"og:description\" content=\"The nohup command in Linux stands for \u201cno hang up. It allows users to execute commands or processes that continue running even after they log out of the terminal or close the session.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/nohup-command-in-linux-with-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:10:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335430610-nohup%20Command%20in%20Linux%20with%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\/nohup-command-in-linux-with-examples\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/nohup-command-in-linux-with-examples\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"nohup Command in Linux with Examples\",\"datePublished\":\"2023-11-30T09:10:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/nohup-command-in-linux-with-examples\/\"},\"wordCount\":734,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/nohup-command-in-linux-with-examples\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335430610-nohup%20Command%20in%20Linux%20with%20Examples%20.jpg\",\"articleSection\":[\"Linux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/nohup-command-in-linux-with-examples\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/nohup-command-in-linux-with-examples\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/nohup-command-in-linux-with-examples\/\",\"name\":\"nohup Command in Linux with Examples\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/nohup-command-in-linux-with-examples\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/nohup-command-in-linux-with-examples\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335430610-nohup%20Command%20in%20Linux%20with%20Examples%20.jpg\",\"datePublished\":\"2023-11-30T09:10:44+00:00\",\"description\":\"The nohup command in Linux stands for \u201cno hang up. It allows users to execute commands or processes that continue running even after they log out of the terminal or close the session.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/nohup-command-in-linux-with-examples\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/nohup-command-in-linux-with-examples\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/nohup-command-in-linux-with-examples\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335430610-nohup%20Command%20in%20Linux%20with%20Examples%20.jpg\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335430610-nohup%20Command%20in%20Linux%20with%20Examples%20.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/nohup-command-in-linux-with-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\":\"nohup Command in Linux with 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":"nohup Command in Linux with Examples","description":"The nohup command in Linux stands for \u201cno hang up. It allows users to execute commands or processes that continue running even after they log out of the terminal or close the session.","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\/nohup-command-in-linux-with-examples\/","og_locale":"en_US","og_type":"article","og_title":"nohup Command in Linux with Examples","og_description":"The nohup command in Linux stands for \u201cno hang up. It allows users to execute commands or processes that continue running even after they log out of the terminal or close the session.","og_url":"https:\/\/prepbytes.com\/blog\/nohup-command-in-linux-with-examples\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2023-11-30T09:10:44+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335430610-nohup%20Command%20in%20Linux%20with%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\/nohup-command-in-linux-with-examples\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/nohup-command-in-linux-with-examples\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"nohup Command in Linux with Examples","datePublished":"2023-11-30T09:10:44+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/nohup-command-in-linux-with-examples\/"},"wordCount":734,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/nohup-command-in-linux-with-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335430610-nohup%20Command%20in%20Linux%20with%20Examples%20.jpg","articleSection":["Linux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/nohup-command-in-linux-with-examples\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/nohup-command-in-linux-with-examples\/","url":"https:\/\/prepbytes.com\/blog\/nohup-command-in-linux-with-examples\/","name":"nohup Command in Linux with Examples","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/nohup-command-in-linux-with-examples\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/nohup-command-in-linux-with-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335430610-nohup%20Command%20in%20Linux%20with%20Examples%20.jpg","datePublished":"2023-11-30T09:10:44+00:00","description":"The nohup command in Linux stands for \u201cno hang up. It allows users to execute commands or processes that continue running even after they log out of the terminal or close the session.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/nohup-command-in-linux-with-examples\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/nohup-command-in-linux-with-examples\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/nohup-command-in-linux-with-examples\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335430610-nohup%20Command%20in%20Linux%20with%20Examples%20.jpg","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1701335430610-nohup%20Command%20in%20Linux%20with%20Examples%20.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/nohup-command-in-linux-with-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":"nohup Command in Linux with 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\/18434","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=18434"}],"version-history":[{"count":2,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18434\/revisions"}],"predecessor-version":[{"id":18460,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18434\/revisions\/18460"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=18434"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=18434"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=18434"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}