{"id":4023,"date":"2019-02-25T17:15:57","date_gmt":"2019-02-25T15:15:57","guid":{"rendered":"https:\/\/www.systemcodegeeks.com\/?p=4023"},"modified":"2019-02-25T12:01:42","modified_gmt":"2019-02-25T10:01:42","slug":"linux-command-process-running-unix","status":"publish","type":"post","link":"https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/","title":{"rendered":"Linux Command to Find how Long a process is Running in UNIX"},"content":{"rendered":"\n<p>Hello guys, today, I am going to share one of the useful tips to find out how long a particular process is running in <a rel=\"noopener noreferrer\" href=\"http:\/\/www.java67.com\/2017\/08\/how-to-find-large-files-with-size-in-Linux.html\" target=\"_blank\">Linux<\/a>. This is very useful while you are troubleshooting an issue and want to know whether your process or service is restarted fine on a daily or weekly basis. So you checked your process is running in Linux operating system and it&#8217;s running fine, by using<br>ps command. But now you want to know, <i>from how long process is running<\/i>, what is the start date of that process etc. Unfortunately, PS command in Linux or any UNIX based operating system doesn&#8217;t provide that information.<br><a name=\"more\" class=\"mce-item-anchor\"><\/a>But as said, UNIX or Linux has commands for almost everything and if there is no command, you can also check some important files in the <br>\/etc directory to find out some useful info. <\/p>\n\n\n\n<p>It\u2019s been a long time, I have posted any UNIX or Linux command tutorial, after sharing some <a href=\"https:\/\/javarevisited.blogspot.com\/2018\/07\/10-tips-on-working-fast-in-unix-or-linux.html\" target=\"_blank\" rel=\"noopener noreferrer\">UNIX productivity tips<\/a>. Hence, I am going to share th<br>is nice little tip, which you can use to check how long a particular process is running.<\/p>\n\n\n\n<p>So I thought to share this nice little tip about finding runtime of a process in UNIX based systems like Linux and Solaris.&nbsp;&nbsp;<br>In this UNIX command tutorial, we will see step by step guide to finding, since when a particular process is running in a server.<\/p>\n\n\n\n<p>I bought this course a couple of months ago and even though I know most of the commands I found it quite interesting for revision and learned some useful options for find and grep which I didn&#8217;t know earlier.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Linux Commands to find Runtime of a Process<\/h2>\n\n\n\n<p>As I said, there is no single command, which can tell us that from how long a process is running. We need to combine multiple commands, and our knowledge of UNIX based systems to find uptime of a process.<\/p>\n\n\n\n<p><b>Step 1: Find process id by using ps command like<\/b><\/p>\n\n\n\n<p><b>$ ps -ef | grep java<\/b><\/p>\n\n\n\n<p>user 22031 22029&nbsp;&nbsp; 0&nbsp;&nbsp; Jan 29 ?&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 24:53 java -Xms512M -Xmx512 Server<\/p>\n\n\n\n<p>here 22031 is process id or PID. By the way, if there are more than one Java process running in your server than you might want to use a more specific <a href=\"http:\/\/javarevisited.blogspot.com\/2011\/06\/10-examples-of-grep-command-in-unix-and.html\">grep command<\/a> to find PID.&nbsp;<\/p>\n\n\n\n<p><b>Step 2: Find the Runtime or start time of a process<\/b><br><br>Once you found PID, you can look into proc directory for that process and check creation date, that&#8217;s the time when your process was started. <\/p>\n\n\n\n<p>By looking that timestamp you can easily find from how long your process is running in Linux.&nbsp;<\/p>\n\n\n\n<p>In order to check the timestamp of any process id procs directory, you can use following ls UNIX command with option -ld as shown below :<\/p>\n\n\n\n<p><b>$ ls -ld \/proc\/22031<\/b><\/p>\n\n\n\n<p>dr-x&#8211;x&#8211;x&nbsp;&nbsp; 5 user&nbsp;&nbsp;&nbsp;&nbsp; group&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 832 Jan 22 13:09 \/proc\/22031<\/p>\n\n\n\n<p>Here process with PID 22031 has been running from Jan 22, 13:09.<\/p>\n\n\n\n<p>If you are lucky, sometimes PS command also shows when a particular program has been started as shown in the following image:<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img decoding=\"async\" width=\"400\" height=\"255\" src=\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2019\/02\/Linux-command-to-find-the-start-time-of-a-process.png\" alt=\"\" class=\"wp-image-4026\" srcset=\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2019\/02\/Linux-command-to-find-the-start-time-of-a-process.png 400w, https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2019\/02\/Linux-command-to-find-the-start-time-of-a-process-300x191.png 300w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/><\/figure><\/div>\n\n\n\n<p>That&#8217;s all on <b>How to find uptime for a process in Java<\/b>. Yes, it&#8217;s similar to what uptime command return for a server, but you can use this to find out how long a process has been running or when exactly it was started or rebooted. I really like these UNIX tips, as it&#8217;s a great tool to find out how long a process is running in UNIX or Linux and I have used a couple of time to check if our web server is restarted or not. <\/p>\n\n\n\n<p><b><u>Related UNIX Command Tutorials <\/u><\/b><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>10 examples of find command in UNIX (<a href=\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/10-examples-find-command-unix-linux\/\">examples<\/a>)<\/li><li>How to send mail with attachments from Linux? (<a rel=\"noopener noreferrer\" href=\"http:\/\/www.java67.com\/2018\/01\/4-examples-to-send-email-with.html\" target=\"_blank\">mailx<\/a>)<\/li><li>10 examples of grep command in UNIX (<a href=\"http:\/\/javarevisited.blogspot.com\/2011\/06\/10-examples-of-grep-command-in-unix-and.html\">examples<\/a>)<\/li><li>10 examples of date command in Linux (<a href=\"http:\/\/javarevisited.blogspot.com\/2012\/06\/10-examples-of-date-command-in-unix.html\">examples<\/a>)<\/li><li>How to get an IP address from a hostname and vice-versa in Linux (<a href=\"http:\/\/javarevisited.blogspot.com\/2011\/09\/find-hostname-from-ip-address-to.html\">command<\/a>)<\/li><li>10 examples of xargs command in Linux (<a href=\"http:\/\/javarevisited.blogspot.com\/2012\/06\/10-xargs-command-example-in-linux-unix.html\">examples<\/a>)<\/li><li>10 examples of tar command in UNIX (<a href=\"http:\/\/javarevisited.blogspot.com\/2011\/11\/tar-command-in-unix-linux-example.html\">examples<\/a>)<\/li><li>10 examples of Vim in UNIX (<a href=\"http:\/\/javarevisited.blogspot.com\/2011\/06\/vi-editor-in-unix-example-tutorial-and.html\">examples<\/a>)<\/li><li>How to create, update and delete soft link in UNIX (<a href=\"http:\/\/javarevisited.blogspot.com\/2011\/04\/symbolic-link-or-symlink-in-unix-linux.html\">command<\/a>)<\/li><li>5 examples of sort command in Linux (<a href=\"http:\/\/javarevisited.blogspot.com\/2011\/08\/unix-sort-command-example-tutorial.html\">examples<\/a>)<\/li><li>5 examples of kill command in Linux (<a href=\"http:\/\/javarevisited.blogspot.com\/2011\/12\/kill-command-unix-linux-example.html\">examples<\/a>)<\/li><li>10 tips to work fast in UNIX? (<a href=\"https:\/\/www.systemcodegeeks.com\/unix\/10-tips-working-fast-unix-linux\/\">tips<\/a>)<\/li><li>Linux find + du + grep example (<a rel=\"noopener noreferrer\" href=\"http:\/\/www.java67.com\/2017\/08\/how-to-find-large-files-with-size-in-Linux.html\" target=\"_blank\">example<\/a>)<\/li><li>10 Examples of curl command in Linux (<a rel=\"noopener noreferrer\" href=\"http:\/\/javarevisited.blogspot.sg\/2017\/03\/10-examples-of-curl-command-in-unix-and-Linux.html\" target=\"_blank\">cURL<\/a>)<\/li><li>10 Examples of chmod command in Linux (<a rel=\"noopener noreferrer\" href=\"http:\/\/javarevisited.blogspot.sg\/2012\/03\/10-example-of-chmod-command-in-unix.html#axzz56Ki0WXWK\" target=\"_blank\">chmod<\/a>)<\/li><li><\/li><\/ul>\n\n\n\n<p>Thanks for reading this article so far. If you like this article then please share with your friends and colleagues. If you have any questions or feedback then please drop a note.<\/p>\n\n\n\n<div class=\"attribution\">\n<table>\n<tbody>\n<tr>\n<td>\n<p>Published on System Code Geeks with permission by Javin Paul, partner at our <a href=\"\/\/www.systemcodegeeks.com\/join-us\/scg\/\" target=\"_blank\" rel=\"noopener noreferrer\">SCG program<\/a>. See the original article here: <a href=\"http:\/\/javarevisited.blogspot.com\/2019\/02\/linux-command-to-find-how-long-process.html\" target=\"_blank\" rel=\"noopener noreferrer\">Linux Command to Find how Long a process is Running in UNIX<\/a><\/p>\n<p>Opinions expressed by System Code Geeks contributors are their own.<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Hello guys, today, I am going to share one of the useful tips to find out how long a particular process is running in Linux. This is very useful while you are troubleshooting an issue and want to know whether your process or service is restarted fine on a daily or weekly basis. So you &hellip;<\/p>\n","protected":false},"author":18,"featured_media":192,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[17],"tags":[61],"class_list":["post-4023","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-unix","tag-linux"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Linux Command to Find how Long a process is Running in UNIX - System Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"Hello guys, today, I am going to share one of the useful tips to find out how long a particular process is running in Linux. This is very useful while you\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Linux Command to Find how Long a process is Running in UNIX - System Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"Hello guys, today, I am going to share one of the useful tips to find out how long a particular process is running in Linux. This is very useful while you\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/\" \/>\n<meta property=\"og:site_name\" content=\"System Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/systemcodegeeks\" \/>\n<meta property=\"article:published_time\" content=\"2019-02-25T15:15:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/linux-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Javin Paul\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@systemcodegeeks\" \/>\n<meta name=\"twitter:site\" content=\"@systemcodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Javin Paul\" \/>\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:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/\"},\"author\":{\"name\":\"Javin Paul\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/6ef28acba02a0c319e609fd9239d952f\"},\"headline\":\"Linux Command to Find how Long a process is Running in UNIX\",\"datePublished\":\"2019-02-25T15:15:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/\"},\"wordCount\":824,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/linux-logo.jpg\",\"keywords\":[\"Linux\"],\"articleSection\":[\"Unix\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/\",\"url\":\"https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/\",\"name\":\"Linux Command to Find how Long a process is Running in UNIX - System Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/linux-logo.jpg\",\"datePublished\":\"2019-02-25T15:15:57+00:00\",\"description\":\"Hello guys, today, I am going to share one of the useful tips to find out how long a particular process is running in Linux. This is very useful while you\",\"breadcrumb\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/#primaryimage\",\"url\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/linux-logo.jpg\",\"contentUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/linux-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.systemcodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Unix\",\"item\":\"https:\/\/www.systemcodegeeks.com\/category\/unix\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Linux Command to Find how Long a process is Running in UNIX\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#website\",\"url\":\"https:\/\/www.systemcodegeeks.com\/\",\"name\":\"System Code Geeks\",\"description\":\"Operating System Developers Resource Center\",\"publisher\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.systemcodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/www.systemcodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/systemcodegeeks\",\"https:\/\/x.com\/systemcodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/6ef28acba02a0c319e609fd9239d952f\",\"name\":\"Javin Paul\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/dc70a0e0b9d5c6614098936b017d6c79ed7f3e0c315a1e59d7d300e4c46d726c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/dc70a0e0b9d5c6614098936b017d6c79ed7f3e0c315a1e59d7d300e4c46d726c?s=96&d=mm&r=g\",\"caption\":\"Javin Paul\"},\"sameAs\":[\"http:\/\/javarevisited.blogspot.com\/\"],\"url\":\"https:\/\/www.systemcodegeeks.com\/author\/javin-paul\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Linux Command to Find how Long a process is Running in UNIX - System Code Geeks - 2026","description":"Hello guys, today, I am going to share one of the useful tips to find out how long a particular process is running in Linux. This is very useful while you","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:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/","og_locale":"en_US","og_type":"article","og_title":"Linux Command to Find how Long a process is Running in UNIX - System Code Geeks - 2026","og_description":"Hello guys, today, I am going to share one of the useful tips to find out how long a particular process is running in Linux. This is very useful while you","og_url":"https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/","og_site_name":"System Code Geeks","article_publisher":"https:\/\/www.facebook.com\/systemcodegeeks","article_published_time":"2019-02-25T15:15:57+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/linux-logo.jpg","type":"image\/jpeg"}],"author":"Javin Paul","twitter_card":"summary_large_image","twitter_creator":"@systemcodegeeks","twitter_site":"@systemcodegeeks","twitter_misc":{"Written by":"Javin Paul","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/#article","isPartOf":{"@id":"https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/"},"author":{"name":"Javin Paul","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/6ef28acba02a0c319e609fd9239d952f"},"headline":"Linux Command to Find how Long a process is Running in UNIX","datePublished":"2019-02-25T15:15:57+00:00","mainEntityOfPage":{"@id":"https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/"},"wordCount":824,"commentCount":0,"publisher":{"@id":"https:\/\/www.systemcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/linux-logo.jpg","keywords":["Linux"],"articleSection":["Unix"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/","url":"https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/","name":"Linux Command to Find how Long a process is Running in UNIX - System Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.systemcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/#primaryimage"},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/linux-logo.jpg","datePublished":"2019-02-25T15:15:57+00:00","description":"Hello guys, today, I am going to share one of the useful tips to find out how long a particular process is running in Linux. This is very useful while you","breadcrumb":{"@id":"https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/#primaryimage","url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/linux-logo.jpg","contentUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/linux-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.systemcodegeeks.com\/unix\/linux-command-process-running-unix\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.systemcodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"Unix","item":"https:\/\/www.systemcodegeeks.com\/category\/unix\/"},{"@type":"ListItem","position":3,"name":"Linux Command to Find how Long a process is Running in UNIX"}]},{"@type":"WebSite","@id":"https:\/\/www.systemcodegeeks.com\/#website","url":"https:\/\/www.systemcodegeeks.com\/","name":"System Code Geeks","description":"Operating System Developers Resource Center","publisher":{"@id":"https:\/\/www.systemcodegeeks.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.systemcodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.systemcodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.systemcodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/systemcodegeeks","https:\/\/x.com\/systemcodegeeks"]},{"@type":"Person","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/6ef28acba02a0c319e609fd9239d952f","name":"Javin Paul","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/dc70a0e0b9d5c6614098936b017d6c79ed7f3e0c315a1e59d7d300e4c46d726c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/dc70a0e0b9d5c6614098936b017d6c79ed7f3e0c315a1e59d7d300e4c46d726c?s=96&d=mm&r=g","caption":"Javin Paul"},"sameAs":["http:\/\/javarevisited.blogspot.com\/"],"url":"https:\/\/www.systemcodegeeks.com\/author\/javin-paul\/"}]}},"_links":{"self":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts\/4023","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/users\/18"}],"replies":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/comments?post=4023"}],"version-history":[{"count":0,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts\/4023\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/media\/192"}],"wp:attachment":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/media?parent=4023"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/categories?post=4023"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/tags?post=4023"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}