{"id":2435,"date":"2018-01-09T13:12:17","date_gmt":"2018-01-09T13:12:17","guid":{"rendered":"http:\/\/kedar.nitty-witty.com\/?p=2435"},"modified":"2024-01-17T10:56:07","modified_gmt":"2024-01-17T10:56:07","slug":"linux-shell-script-pause-a-process-with-kill-signals","status":"publish","type":"post","link":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-script-pause-a-process-with-kill-signals","title":{"rendered":"How to Pause (Suspend) a process in Linux with kill signals"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Linux KILL command gives you killing opportunities to use SIGNALs. In this post we&#8217;re going to Pause (or suspend) and Start an ongoing Linux process.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Problem: The requirement here is to pause a process for certain time and run it only during off hours. The process itself doesn&#8217;t have this option and also we cannot stop it in-between, as it will start from the scratch again.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Solution: To resolve this we can think of sending out signals to the process to hint it to Pause or Progress.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">A signal is an asynchronous notification sent to a process or to a specific thread within the same process in order to notify it of an event that occurred. When a signal is sent, the operating system interrupts the target process&#8217; normal flow of execution to deliver the signal.<\/p>\n<\/blockquote>\n\n\n\n<!--more-->\n\n\n\n<p class=\"wp-block-paragraph\">For a command run on terminal we may use ctrl+z to suspend the process.&nbsp; This internally sends the SIGTSTP signal to the foreground process. Which will basically pause the execution of the command and return control to the terminal.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">We can later use bg &#8211; to send the execution in background or fg &#8211; to bring the process in foreground for proceeding the execution.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Though here we don&#8217;t have terminal access and we need to work on a different process using script. We will use KILL command with two signals SIGTSTP &amp; SIGCONT to achieve the goal. All we need is the PID of the target process.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>SIGTSTP, by default, causes the process to suspend execution. Our Pause.<\/li>\n\n\n\n<li>SIGCONT will continue executing the process, if stopped. That&#8217;s our Start.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">The Script to Pause\/Start Linux Process:<\/h2>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@nitty-witty sigscripts]# cat .\/signal.sh\nstop() {\nkill -TSTP $1\n}\n\nstart() {\nkill -SIGCONT $1\n}\n\nusage() {\necho \"$1 [stop|start] process_id\"\n}\n\nif [ \"$#\" -eq 0 ]; then\n        usage;\n        exit 1;\nfi\n\necho \"Processing $1 to PID $2\"\nif [ \"$1\" = \"start\" ]; then\n        start $2;\nelif [ \"$1\" = \"stop\" ]; then\n        stop $2;\nelse\n        usage;\nfi;\n[root@nitty-witty sigscripts]#\n<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Sample usage:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@nitty-witty sigscripts]# .\/signal.sh\n [stop|start] process_id\n<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Watch video in action:<br><iframe src=\"https:\/\/www.youtube.com\/embed\/HIRBdse7heI\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><\/iframe><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">We have used another script which runs a for-loop to print date and counter at certain interval. Here&#8217;s one for your reference.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">#contd.sh\necho $ &gt; \/tmp\/mypid\nfor number in {0..10000}\ndo\n     sleep 1\ndone\nexit 0\n<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Ofcourse the script is quiet basic, just to prove the point and share the idea. Hope you liked this small tutorial of how to pause a process using shell script.<\/p>\n","protected":false},"excerpt":{"rendered":"In this post we will see how to pause (suspend) and start a linux process using signals (SIGTSTP and SIGCONT) via kill command.\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[6],"tags":[444,59,447,442,105,446,443,445,847],"class_list":["post-2435","post","type-post","status-publish","format-standard","category-technical","tag-kill","tag-linux","tag-pause-a-linux-process","tag-pause-process","tag-shell-script","tag-sigcont","tag-signal","tag-sigtstp","tag-suspend-linux-process"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"In this post we will see how to pause (suspend) and start a linux process using signals (SIGTSTP and SIGCONT) via kill command.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Kedar\"\/>\n\t<meta name=\"google-site-verification\" content=\"_Bu1h5r0PxIC0D2jBVdmYN45RTeG9ogcX85XLkbG1qA\" \/>\n\t<meta name=\"msvalidate.01\" content=\"116B62074CBCA1BA99B8CCE09CCF2FB8\" \/>\n\t<meta name=\"keywords\" content=\"pause process,signal,kill,sigtstp,sigcont,linux,pause a linux process,shell script,suspend linux process\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-script-pause-a-process-with-kill-signals\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Change Is Inevitable | Kedar Vaijanapurkar&#039;s Blog for MySQL, technology and various subjects\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Linux: Pause a process with kill signals &amp; shell script | Change Is Inevitable\" \/>\n\t\t<meta property=\"og:description\" content=\"In this post we will see how to pause (suspend) and start a linux process using signals (SIGTSTP and SIGCONT) via kill command.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-script-pause-a-process-with-kill-signals\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2018-01-09T13:12:17+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-01-17T10:56:07+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Linux: Pause a process with kill signals &amp; shell script | Change Is Inevitable\" \/>\n\t\t<meta name=\"twitter:description\" content=\"In this post we will see how to pause (suspend) and start a linux process using signals (SIGTSTP and SIGCONT) via kill command.\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/linux-shell-script-pause-a-process-with-kill-signals#article\",\"name\":\"Linux: Pause a process with kill signals & shell script | Change Is Inevitable\",\"headline\":\"How to Pause (Suspend) a process in Linux with kill signals\",\"author\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/linux-shell-script-pause-a-process-with-kill-signals#articleImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Kedar\"},\"datePublished\":\"2018-01-09T13:12:17+00:00\",\"dateModified\":\"2024-01-17T10:56:07+00:00\",\"inLanguage\":\"en-US\",\"commentCount\":2,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/linux-shell-script-pause-a-process-with-kill-signals#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/linux-shell-script-pause-a-process-with-kill-signals#webpage\"},\"articleSection\":\"Technical, kill, linux, Pause a linux process, Pause Process, shell script, SIGCONT, signal, SIGTSTP, suspend linux process\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/linux-shell-script-pause-a-process-with-kill-signals#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/technical#listItem\",\"name\":\"Technical\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/technical#listItem\",\"position\":2,\"name\":\"Technical\",\"item\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/technical\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/linux-shell-script-pause-a-process-with-kill-signals#listItem\",\"name\":\"How to Pause (Suspend) a process in Linux with kill signals\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/linux-shell-script-pause-a-process-with-kill-signals#listItem\",\"position\":3,\"name\":\"How to Pause (Suspend) a process in Linux with kill signals\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/category\\\/technical#listItem\",\"name\":\"Technical\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#person\",\"name\":\"Kedar\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/linux-shell-script-pause-a-process-with-kill-signals#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Kedar\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin#author\",\"url\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin\",\"name\":\"Kedar\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/linux-shell-script-pause-a-process-with-kill-signals#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Kedar\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/linux-shell-script-pause-a-process-with-kill-signals#webpage\",\"url\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/linux-shell-script-pause-a-process-with-kill-signals\",\"name\":\"Linux: Pause a process with kill signals & shell script | Change Is Inevitable\",\"description\":\"In this post we will see how to pause (suspend) and start a linux process using signals (SIGTSTP and SIGCONT) via kill command.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/linux-shell-script-pause-a-process-with-kill-signals#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/author\\\/admin#author\"},\"datePublished\":\"2018-01-09T13:12:17+00:00\",\"dateModified\":\"2024-01-17T10:56:07+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/\",\"name\":\"..::CHANGE is INEVITABLE::..\",\"description\":\"Kedar Vaijanapurkar's Blog for MySQL, technology and various subjects\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/kedar.nitty-witty.com\\\/blog\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Linux: Pause a process with kill signals & shell script | Change Is Inevitable","description":"In this post we will see how to pause (suspend) and start a linux process using signals (SIGTSTP and SIGCONT) via kill command.","canonical_url":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-script-pause-a-process-with-kill-signals","robots":"max-image-preview:large","keywords":"pause process,signal,kill,sigtstp,sigcont,linux,pause a linux process,shell script,suspend linux process","webmasterTools":{"google-site-verification":"_Bu1h5r0PxIC0D2jBVdmYN45RTeG9ogcX85XLkbG1qA","msvalidate.01":"116B62074CBCA1BA99B8CCE09CCF2FB8","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-script-pause-a-process-with-kill-signals#article","name":"Linux: Pause a process with kill signals & shell script | Change Is Inevitable","headline":"How to Pause (Suspend) a process in Linux with kill signals","author":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin#author"},"publisher":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/#person"},"image":{"@type":"ImageObject","@id":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-script-pause-a-process-with-kill-signals#articleImage","url":"https:\/\/secure.gravatar.com\/avatar\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g","width":96,"height":96,"caption":"Kedar"},"datePublished":"2018-01-09T13:12:17+00:00","dateModified":"2024-01-17T10:56:07+00:00","inLanguage":"en-US","commentCount":2,"mainEntityOfPage":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-script-pause-a-process-with-kill-signals#webpage"},"isPartOf":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-script-pause-a-process-with-kill-signals#webpage"},"articleSection":"Technical, kill, linux, Pause a linux process, Pause Process, shell script, SIGCONT, signal, SIGTSTP, suspend linux process"},{"@type":"BreadcrumbList","@id":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-script-pause-a-process-with-kill-signals#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/kedar.nitty-witty.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/category\/technical#listItem","name":"Technical"}},{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/category\/technical#listItem","position":2,"name":"Technical","item":"https:\/\/kedar.nitty-witty.com\/blog\/category\/technical","nextItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-script-pause-a-process-with-kill-signals#listItem","name":"How to Pause (Suspend) a process in Linux with kill signals"},"previousItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-script-pause-a-process-with-kill-signals#listItem","position":3,"name":"How to Pause (Suspend) a process in Linux with kill signals","previousItem":{"@type":"ListItem","@id":"https:\/\/kedar.nitty-witty.com\/blog\/category\/technical#listItem","name":"Technical"}}]},{"@type":"Person","@id":"https:\/\/kedar.nitty-witty.com\/blog\/#person","name":"Kedar","image":{"@type":"ImageObject","@id":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-script-pause-a-process-with-kill-signals#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g","width":96,"height":96,"caption":"Kedar"}},{"@type":"Person","@id":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin#author","url":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin","name":"Kedar","image":{"@type":"ImageObject","@id":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-script-pause-a-process-with-kill-signals#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/be1f7021485c325d92cc4c5d961accb9c1af72b1b11281a790f7f4f066ef10d3?s=96&d=mm&r=g","width":96,"height":96,"caption":"Kedar"}},{"@type":"WebPage","@id":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-script-pause-a-process-with-kill-signals#webpage","url":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-script-pause-a-process-with-kill-signals","name":"Linux: Pause a process with kill signals & shell script | Change Is Inevitable","description":"In this post we will see how to pause (suspend) and start a linux process using signals (SIGTSTP and SIGCONT) via kill command.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-script-pause-a-process-with-kill-signals#breadcrumblist"},"author":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin#author"},"creator":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/author\/admin#author"},"datePublished":"2018-01-09T13:12:17+00:00","dateModified":"2024-01-17T10:56:07+00:00"},{"@type":"WebSite","@id":"https:\/\/kedar.nitty-witty.com\/blog\/#website","url":"https:\/\/kedar.nitty-witty.com\/blog\/","name":"..::CHANGE is INEVITABLE::..","description":"Kedar Vaijanapurkar's Blog for MySQL, technology and various subjects","inLanguage":"en-US","publisher":{"@id":"https:\/\/kedar.nitty-witty.com\/blog\/#person"}}]},"og:locale":"en_US","og:site_name":"Change Is Inevitable | Kedar Vaijanapurkar's Blog for MySQL, technology and various subjects","og:type":"article","og:title":"Linux: Pause a process with kill signals &amp; shell script | Change Is Inevitable","og:description":"In this post we will see how to pause (suspend) and start a linux process using signals (SIGTSTP and SIGCONT) via kill command.","og:url":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-script-pause-a-process-with-kill-signals","article:published_time":"2018-01-09T13:12:17+00:00","article:modified_time":"2024-01-17T10:56:07+00:00","twitter:card":"summary","twitter:title":"Linux: Pause a process with kill signals &amp; shell script | Change Is Inevitable","twitter:description":"In this post we will see how to pause (suspend) and start a linux process using signals (SIGTSTP and SIGCONT) via kill command."},"aioseo_meta_data":{"post_id":"2435","title":"Linux: Pause a process with kill signals &amp; shell script | #site_title","description":"In this post we will see how to pause (suspend) and start a linux process using signals (SIGTSTP and SIGCONT) via kill command.","keywords":[{"label":"Pause Process","value":"Pause Process"},{"label":"signal","value":"signal"},{"label":"kill","value":"kill"},{"label":"SIGTSTP","value":"SIGTSTP"},{"label":"SIGCONT","value":"SIGCONT"},{"label":"linux","value":"linux"}],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2021-03-24 17:40:44","updated":"2025-08-16 19:17:35","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/kedar.nitty-witty.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/kedar.nitty-witty.com\/blog\/category\/technical\" title=\"Technical\">Technical<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow to Pause (Suspend) a process in Linux with kill signals\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/kedar.nitty-witty.com\/blog"},{"label":"Technical","link":"https:\/\/kedar.nitty-witty.com\/blog\/category\/technical"},{"label":"How to Pause (Suspend) a process in Linux with kill signals","link":"https:\/\/kedar.nitty-witty.com\/blog\/linux-shell-script-pause-a-process-with-kill-signals"}],"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/posts\/2435","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/comments?post=2435"}],"version-history":[{"count":6,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/posts\/2435\/revisions"}],"predecessor-version":[{"id":3179,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/posts\/2435\/revisions\/3179"}],"wp:attachment":[{"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/media?parent=2435"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/categories?post=2435"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kedar.nitty-witty.com\/blog\/wp-json\/wp\/v2\/tags?post=2435"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}