{"id":1995,"date":"2016-11-25T17:15:07","date_gmt":"2016-11-25T15:15:07","guid":{"rendered":"http:\/\/www.systemcodegeeks.com\/?p=1995"},"modified":"2017-12-04T15:50:26","modified_gmt":"2017-12-04T13:50:26","slug":"linux-remove-user-example","status":"publish","type":"post","link":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/","title":{"rendered":"Linux Remove User Example"},"content":{"rendered":"<p>Dealing with users is a task that every systems administrator has to deal with frequently. This example will show you how to delete users in Linux, looking at the two different available commands: The default utility, <code>userdel<\/code>; and a script that acts as more friendly front-end for the default utility, which is named <code>deluser<\/code>.<\/p>\n<p>For this example, Linux Mint 18 has been used.<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n[ulp id=&#8217;SG9vnnKgRCD7iZxf&#8217;]<\/p>\n<h2>1. How users are organized<\/h2>\n<p>The existing users of the system are registered in the file <code>\/etc\/passwd<\/code>. <strong>This file defines who has legit access to the system<\/strong>. This is an example of a line of the file:<\/p>\n<pre class=\"brush:bash\">julen:x:1000:1000:Julen,,,:\/home\/julen:\/bin\/zsh<\/pre>\n<p>Which follows the following format:<\/p>\n<pre class=\"brush:bash\">username:password:uid:gid:real_name:home_directory:command_shell<\/pre>\n<ul>\n<li>The <code>username<\/code> is the account name for the login.<\/li>\n<li>The <code>password<\/code> field is actually not used in modern systems. The users credentials are stored in <code>\/etc\/shadow<\/code> file.<\/li>\n<li>The <code>uid<\/code> (user id) and <code>gid<\/code> (group id) are the unique identifiers of the user and the group it belongs to, respectively.<\/li>\n<li>The <code>real_name<\/code> is that, the user\u2019s real name.<\/li>\n<li>The <code>home_directory<\/code> is the working directory of each user, usually <code>\/home\/&lt;username&gt;<\/code>.<\/li>\n<li>Finally, the <code>command_shell<\/code> is the program that is ran at login. Usually, this is the path to a shell. If not set, <code>\/bin\/sh<\/code> is used.<\/li>\n<\/ul>\n<p><strong>It\u2019s better not to touch manually this file to remove <\/strong>(or add\/modify<strong>) users. <\/strong>To delete users, we should use the methods that we will see in this tutorial.<\/p>\n<h2>2. Using native binary: userdel<\/h2>\n<p><code>userdel<\/code> is the native, low level, binary of Linux systems. Its use is very simple:<\/p>\n<pre class=\"brush:bash\">sudo userdel [options] &lt;username&gt; # superuser privileges are needed.<\/pre>\n<p>So, deleting a user is as simple as it is shown below:<\/p>\n<pre class=\"brush:bash\">sudo userdel john_doe<\/pre>\n<p>And the user will be deleted. We can confirm it checking the <code>\/etc\/passwd<\/code> file:<\/p>\n<pre class=\"brush:bash\">grep \"john_doe\" \/etc\/passwd<\/pre>\n<p>Which won&#8217;t return any result.<\/p>\n<p><strong>Note<\/strong>: if we try to delete a non existing user, the binary will throw an error message:<\/p>\n<blockquote><p>userdel: user &#8216;john_doe&#8217; does not exist<\/p><\/blockquote>\n<h3>2.1. Deleting the home directory<\/h3>\n<p>By default, <code>userdel<\/code> does not remove the deleted user&#8217;s home directory. We can check it listing the directories in <code>\/home<\/code>.<\/p>\n<p>For deleting the home directory along with its owner, we have to use the <code>-r<\/code> (<code>--remove<\/code>) option:<\/p>\n<pre class=\"brush:bash\">sudo userdel -r &lt;username&gt;<\/pre>\n<p>So, for deleting <code>john_doe<\/code> with its home directory, would be:<\/p>\n<pre class=\"brush:bash\">sudo userdel -r john_doe<\/pre>\n<p>And the directory will disappear from <code>\/home<\/code>.<\/p>\n<p><strong>Note<\/strong>: this option also removes the mail spool directory (<code>\/var\/mail\/&lt;username&gt;<\/code>). If this directory, or the home one, are not found, the command will show a warning.<\/p>\n<h2>3. Using a user-friendly wrapper for userdel: deluser<\/h2>\n<p>We have seen how to use <code>userdel<\/code>, the native binary, which is actually not difficult to use. But the problem is that it doesn&#8217;t offer many options, and it also does not show much information about what&#8217;s being done.<\/p>\n<p>To make the user deletion more comfortable, a Perl script named <code>deluser<\/code> was created, which is actually just an interactive wrapper for the native binary.<\/p>\n<p>We can try to remove our <code>john_doe<\/code> user with <code>deluser<\/code>:<\/p>\n<pre class=\"brush:bash\">sudo deluser john_doe<\/pre>\n<p>(Of course, with <code>deluser<\/code> we also need superuser permissions).<\/p>\n<p>And the following will be shown:<\/p>\n<blockquote><p>Removing user `john_doe&#8217; &#8230;<br \/>\nWarning: group `john_doe&#8217; has no more members.<br \/>\nDone.<\/p><\/blockquote>\n<h3>3.1. Deleting the home directory<\/h3>\n<p>By default, this command neither removes the home directory. In this case, we have to pass the <code>--remove-home<\/code> option:<\/p>\n<pre class=\"brush:bash\">sudo deluser --remove-home john_doe<\/pre>\n<h3>3.2. Deleting all the files owned by the user<\/h3>\n<p>We have seen how to remove the home directory, but this command also provides the chance for deleting every file in the disk owned by the user. For this, we have to use the <code>--remove-all-files<\/code> option:<\/p>\n<pre class=\"brush:bash\">sudo deluser --remove-all-files &lt;username&gt;<\/pre>\n<p>Of course, we could combine it with\u00a0 the home directory deletion:<\/p>\n<pre class=\"brush:bash\">sudo deluser --remove-home --remove-all-files john_doe<\/pre>\n<p><strong>Note<\/strong>: take into account that looking for every file in the disk may take a long time.<\/p>\n<h3>3.3. Creating a backup of the files<\/h3>\n<p>It may be interesting to create a backup of the files that are going to be remove in the same time we delete those files belonging to the user. This can be achieved with the <code>--backup<\/code> option:<\/p>\n<pre class=\"brush:bash\">sudo deluser --remove-home --backup &lt;username&gt;<\/pre>\n<p>So, if we execute the following command:<\/p>\n<pre class=\"brush:bash\">sudo deluser --remove-home --remove-all-files --backup john_doe<\/pre>\n<p>A file named <code>john_doe.tar.bz2<\/code> will be created, containing all the files that have been removed, in the directory from where we have executed the command.<\/p>\n<p><strong>Note<\/strong>: if we want to specify the folder where the backup should be created, we have to use the &#8212;<code>backup-to<\/code> option:<\/p>\n<pre class=\"brush:bash\">sudo deluser --backup-to &lt;directory&gt; &lt;username&gt;<\/pre>\n<p>For example, for saving the backup in <code>\/tmp<\/code> directory:<\/p>\n<pre class=\"brush:bash\">sudo deluser --remove-home --remove-all-files --backup-to \/tmp john_doe<\/pre>\n<p>Take into account that <strong>we must specify an existing directory, and without appending a file name<\/strong>, otherwise the command will throw an error and the user won&#8217;t be deleted.<\/p>\n<h2>4. Summary<\/h2>\n<p>In this example we have examined\u00a0how to delete users in Linux systems, with two different commands: <code>userdel<\/code> and <code>deluser<\/code>. As we have seen, <code>deluser<\/code> can be considered a <em>better <\/em>option, since it shows more information, and also provides the option of creating a backup of the files of the user that are going to be removed.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Dealing with users is a task that every systems administrator has to deal with frequently. This example will show you how to delete users in Linux, looking at the two different available commands: The default utility, userdel; and a script that acts as more friendly front-end for the default utility, which is named deluser. For &hellip;<\/p>\n","protected":false},"author":25,"featured_media":185,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[19],"tags":[],"class_list":["post-1995","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bash"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Linux Remove User Example - System Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"Dealing with users is a task that every systems administrator has to deal with frequently. This example will show you how to delete users in Linux,\" \/>\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\/shell-scripting\/bash\/linux-remove-user-example\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Linux Remove User Example - System Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"Dealing with users is a task that every systems administrator has to deal with frequently. This example will show you how to delete users in Linux,\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/\" \/>\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=\"2016-11-25T15:15:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-12-04T13:50:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/bash-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=\"Toni\" \/>\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=\"Toni\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/\"},\"author\":{\"name\":\"Toni\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/69a7de154310f99cedabb63c580291b2\"},\"headline\":\"Linux Remove User Example\",\"datePublished\":\"2016-11-25T15:15:07+00:00\",\"dateModified\":\"2017-12-04T13:50:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/\"},\"wordCount\":765,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/bash-logo.jpg\",\"articleSection\":[\"BASH\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/\",\"url\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/\",\"name\":\"Linux Remove User Example - System Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/bash-logo.jpg\",\"datePublished\":\"2016-11-25T15:15:07+00:00\",\"dateModified\":\"2017-12-04T13:50:26+00:00\",\"description\":\"Dealing with users is a task that every systems administrator has to deal with frequently. This example will show you how to delete users in Linux,\",\"breadcrumb\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/#primaryimage\",\"url\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/bash-logo.jpg\",\"contentUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/bash-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.systemcodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Shell Scripting\",\"item\":\"https:\/\/www.systemcodegeeks.com\/category\/shell-scripting\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"BASH\",\"item\":\"https:\/\/www.systemcodegeeks.com\/category\/shell-scripting\/bash\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Linux Remove User Example\"}]},{\"@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\/69a7de154310f99cedabb63c580291b2\",\"name\":\"Toni\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/21c1661474c78b4757355b8beef9ab1d14f490ee3a3e67392f4e618d36643d4c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/21c1661474c78b4757355b8beef9ab1d14f490ee3a3e67392f4e618d36643d4c?s=96&d=mm&r=g\",\"caption\":\"Toni\"},\"url\":\"https:\/\/www.systemcodegeeks.com\/author\/julen-pardo\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Linux Remove User Example - System Code Geeks - 2026","description":"Dealing with users is a task that every systems administrator has to deal with frequently. This example will show you how to delete users in Linux,","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\/shell-scripting\/bash\/linux-remove-user-example\/","og_locale":"en_US","og_type":"article","og_title":"Linux Remove User Example - System Code Geeks - 2026","og_description":"Dealing with users is a task that every systems administrator has to deal with frequently. This example will show you how to delete users in Linux,","og_url":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/","og_site_name":"System Code Geeks","article_publisher":"https:\/\/www.facebook.com\/systemcodegeeks","article_published_time":"2016-11-25T15:15:07+00:00","article_modified_time":"2017-12-04T13:50:26+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/bash-logo.jpg","type":"image\/jpeg"}],"author":"Toni","twitter_card":"summary_large_image","twitter_creator":"@systemcodegeeks","twitter_site":"@systemcodegeeks","twitter_misc":{"Written by":"Toni","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/#article","isPartOf":{"@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/"},"author":{"name":"Toni","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/69a7de154310f99cedabb63c580291b2"},"headline":"Linux Remove User Example","datePublished":"2016-11-25T15:15:07+00:00","dateModified":"2017-12-04T13:50:26+00:00","mainEntityOfPage":{"@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/"},"wordCount":765,"commentCount":0,"publisher":{"@id":"https:\/\/www.systemcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/bash-logo.jpg","articleSection":["BASH"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/","url":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/","name":"Linux Remove User Example - System Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.systemcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/#primaryimage"},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/bash-logo.jpg","datePublished":"2016-11-25T15:15:07+00:00","dateModified":"2017-12-04T13:50:26+00:00","description":"Dealing with users is a task that every systems administrator has to deal with frequently. This example will show you how to delete users in Linux,","breadcrumb":{"@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/#primaryimage","url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/bash-logo.jpg","contentUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/bash-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-remove-user-example\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.systemcodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"Shell Scripting","item":"https:\/\/www.systemcodegeeks.com\/category\/shell-scripting\/"},{"@type":"ListItem","position":3,"name":"BASH","item":"https:\/\/www.systemcodegeeks.com\/category\/shell-scripting\/bash\/"},{"@type":"ListItem","position":4,"name":"Linux Remove User Example"}]},{"@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\/69a7de154310f99cedabb63c580291b2","name":"Toni","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/21c1661474c78b4757355b8beef9ab1d14f490ee3a3e67392f4e618d36643d4c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/21c1661474c78b4757355b8beef9ab1d14f490ee3a3e67392f4e618d36643d4c?s=96&d=mm&r=g","caption":"Toni"},"url":"https:\/\/www.systemcodegeeks.com\/author\/julen-pardo\/"}]}},"_links":{"self":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts\/1995","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\/25"}],"replies":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/comments?post=1995"}],"version-history":[{"count":0,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts\/1995\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/media\/185"}],"wp:attachment":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/media?parent=1995"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/categories?post=1995"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/tags?post=1995"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}