{"id":1812,"date":"2016-09-26T17:15:01","date_gmt":"2016-09-26T14:15:01","guid":{"rendered":"http:\/\/www.systemcodegeeks.com\/?p=1812"},"modified":"2017-12-04T15:53:33","modified_gmt":"2017-12-04T13:53:33","slug":"linux-find-large-files-example","status":"publish","type":"post","link":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-find-large-files-example\/","title":{"rendered":"Linux Find Large Files Example"},"content":{"rendered":"<p>Having our disk tidy and free of garbage occupies space is something we all want to do, but many times we don&#8217;t pay attention at large files that are taking up a considerable amount of space that could be useful for something else.<\/p>\n<p>In this example, we will see how to look for large files, just to be aware of their existence, or for deleting or moving them somewhere else.<\/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[ulp id=&#8217;SG9vnnKgRCD7iZxf&#8217;]<\/p>\n<h2>1. Introduction<\/h2>\n<p>There&#8217;s more than a way to find by its size. And, of course, a &#8220;large file&#8221; is only a subjective term to refer to files that each one considers large depending on its size; there&#8217;s no a way of directly saying &#8220;look for large files&#8221;. So, we will look for files specifying a size.<\/p>\n<p>For this, we will use the powerful <code>find<\/code> command.<\/p>\n<h2>2. Understanding the find command<\/h2>\n<p>The syntax of <code>find<\/code>, for looking for files by their size, is the following:<\/p>\n<pre class=\"brush:bash\">find &lt;path&gt; [-type &lt;file-type&gt;] -size +&lt;size&gt;&lt;unit&gt;<\/pre>\n<p>Let&#8217;s explain it briefly:<\/p>\n<ul>\n<li><code>find<\/code> looks for files <strong>recursively<\/strong>, so, when we specify a <code>path<\/code>, it will also look in the children directories.<\/li>\n<li>Optionally, we can specify the file type, if we only want to find certain ones. The file types are the followings:\n<ul>\n<li><strong>d<\/strong>: directory<\/li>\n<li><strong>f<\/strong>: regular file<\/li>\n<li><strong>l<\/strong>: symbolic link<\/li>\n<li><strong>b<\/strong>: buffered block<\/li>\n<li><strong>c<\/strong>: unbuffered character<\/li>\n<li><strong>p<\/strong>: named pipe<\/li>\n<li><strong>s<\/strong>: socket<\/li>\n<\/ul>\n<\/li>\n<li>Finally, the size, composed by the size itself, and the unit we are using, that can be one of these:\n<ul>\n<li><strong>b<\/strong>: 512-byte blocks (the one used by default, if no other unit is specified)<\/li>\n<li><strong>c<\/strong>: bytes<\/li>\n<li><strong>k<\/strong>: kilobytes<\/li>\n<li><strong>M<\/strong>: megabytes<\/li>\n<li><strong>G<\/strong>: gigabytes<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<h3>2.1. Examples<\/h3>\n<p>Let&#8217;s see some examples, if there&#8217;s any doubt left:<\/p>\n<p><strong>Find files in home directory bigger than 2 GB:<\/strong><\/p>\n<pre class=\"brush:bash\">find \/home -size +2G<\/pre>\n<p><strong>Find directories in the whole system bigger than 10 GB:<\/strong><\/p>\n<pre class=\"brush:bash\">sudo find \/ -type d -size +10G<\/pre>\n<p>Note that, in this case, we have used root privileges with <code>sudo<\/code>, to look also inside directories the current user does not have access to.<\/p>\n<h3>2.2. Finding by file extension<\/h3>\n<p>If we want to be more precise, we can also look for files by the extension. For that, we can use the <code>-name<\/code> option:<\/p>\n<pre class=\"brush:bash\">find [...] -name *.&lt;extension&gt;<\/pre>\n<p>Here are some examples:<\/p>\n<p><strong>Find pdf files in home directory bigger than 20 MB:<\/strong><\/p>\n<pre class=\"brush:bash\">sudo find \/home -size +20M -name *.pdf<\/pre>\n<p><strong>Find mkv files in the whole system bigger than 5 GB<\/strong>:<\/p>\n<pre class=\"brush:bash\">sudo find \/home -size +5G -name *.mkv<\/pre>\n<h2>3. Executing actions<\/h2>\n<p>Until now, we have seen how to just find large files. Usually, if we want to find large files, is with a certain purpose (usually, delete them, or move them somewhere else).<\/p>\n<p>So, finding the files, just give as the path to them. This is not very useful if we want to perform some action, like previously mentioned.<\/p>\n<p><code>find<\/code> command allows to execute commands for every found file. The syntax is the following:<\/p>\n<pre class=\"brush:bash\">find [...] -exec &lt;command&gt; {} \\;<\/pre>\n<p>Where the <code>command<\/code> is the command itself, and the curly braces <code>{}<\/code> are where the found file will be placed, for the command execution. Finally, <code>\\;<\/code> indicates the command end.<\/p>\n<p>Let&#8217;s see some examples:<\/p>\n<p><strong>Remove all log files bigger than 20 MB:<\/strong><\/p>\n<pre class=\"brush:bash\">sudo find \/ -name *.log -size +20M -exec rm {} \\;<\/pre>\n<p><strong>Move all files bigger than 30 GB to <code>\/tmp<\/code>:<\/strong><\/p>\n<pre class=\"brush:bash\">sudo find \/ -size +30G -exec mv {} \/tmp \\;<\/pre>\n<p>Be careful, if you execute those commands, the files will be removed\/moved!<\/p>\n<p>Of course, we can execute any other action, such as showing file information:<\/p>\n<pre class=\"brush:bash\">sudo find \/ -size +10G -exec ls -l {} \\;<\/pre>\n<h2>4. Finding the top larges files<\/h2>\n<p>The remaining interesting action we can do with <code>find<\/code> is to find the largest files in the system.<\/p>\n<p>In the previous examples, we have been looking for files specifying a size. But we may have no idea about the sizes we want to look for, and we just want to find the largest ones.<\/p>\n<p>For that, we can use <code>find<\/code> executing the following command:<\/p>\n<pre class=\"brush:bash\">find [...] -exec ls -s {} \\; | sort -n -r | head -n<\/pre>\n<p>Where <code>n<\/code> is the number of files to look for.<\/p>\n<p>So, for example, if we execute:<\/p>\n<pre class=\"brush:bash\">sudo find \/ -type f -exec ls -s {} \\; | sort -n -r | head -10<\/pre>\n<p>Will look for the biggest 10 files in the disk. This is a sample output of the command:<\/p>\n<pre class=\"brush:bash\">26460 \/tmp\/lu24928inllnr.tmp\/lu24928inllvi.tmp\r\n5984 \/tmp\/lu24928inllnr.tmp\/lu24928inllos.tmp\r\n5984 \/tmp\/lu24928inllnr.tmp\/lu24928inllom.tmp\r\n5984 \/tmp\/lu24928inllnr.tmp\/lu24928inllo8.tmp\r\n5984 \/tmp\/lu24928inllnr.tmp\/lu24928inllo4.tmp\r\n5864 \/tmp\/lu24928inllnr.tmp\/lu24928inllox.tmp\r\n5864 \/tmp\/lu24928inllnr.tmp\/lu24928inllor.tmp\r\n5864 \/tmp\/lu24928inllnr.tmp\/lu24928inllod.tmp\r\n5864 \/tmp\/lu24928inllnr.tmp\/lu24928inllo7.tmp\r\n5784 \/tmp\/lu24928inllnr.tmp\/lu24928inllp2.tmp<\/pre>\n<h2>5. Conclusion<\/h2>\n<p>In this example we have seen how to look for files in Linux by their size, with the aim of finding the largest files. We have seen that we can specify any type of file and size, being also able to execute a command for each coincidence, which can help us cleaning up our disks.<\/p>\n<p>Finally, we have shown how to look for the top largest files in the disk, without the need of specifying a size.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Having our disk tidy and free of garbage occupies space is something we all want to do, but many times we don&#8217;t pay attention at large files that are taking up a considerable amount of space that could be useful for something else. In this example, we will see how to look for large files, &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-1812","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 Find Large Files Example - System Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"Having our disk tidy and free of garbage occupies space is something we all want to do, but many times we don&#039;t pay attention at large files that are\" \/>\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-find-large-files-example\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Linux Find Large Files Example - System Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"Having our disk tidy and free of garbage occupies space is something we all want to do, but many times we don&#039;t pay attention at large files that are\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-find-large-files-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-09-26T14:15:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-12-04T13:53:33+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=\"4 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-find-large-files-example\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-find-large-files-example\/\"},\"author\":{\"name\":\"Toni\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/69a7de154310f99cedabb63c580291b2\"},\"headline\":\"Linux Find Large Files Example\",\"datePublished\":\"2016-09-26T14:15:01+00:00\",\"dateModified\":\"2017-12-04T13:53:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-find-large-files-example\/\"},\"wordCount\":705,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-find-large-files-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-find-large-files-example\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-find-large-files-example\/\",\"url\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-find-large-files-example\/\",\"name\":\"Linux Find Large Files Example - System Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-find-large-files-example\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-find-large-files-example\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/bash-logo.jpg\",\"datePublished\":\"2016-09-26T14:15:01+00:00\",\"dateModified\":\"2017-12-04T13:53:33+00:00\",\"description\":\"Having our disk tidy and free of garbage occupies space is something we all want to do, but many times we don't pay attention at large files that are\",\"breadcrumb\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-find-large-files-example\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-find-large-files-example\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-find-large-files-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-find-large-files-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 Find Large Files 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 Find Large Files Example - System Code Geeks - 2026","description":"Having our disk tidy and free of garbage occupies space is something we all want to do, but many times we don't pay attention at large files that are","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-find-large-files-example\/","og_locale":"en_US","og_type":"article","og_title":"Linux Find Large Files Example - System Code Geeks - 2026","og_description":"Having our disk tidy and free of garbage occupies space is something we all want to do, but many times we don't pay attention at large files that are","og_url":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-find-large-files-example\/","og_site_name":"System Code Geeks","article_publisher":"https:\/\/www.facebook.com\/systemcodegeeks","article_published_time":"2016-09-26T14:15:01+00:00","article_modified_time":"2017-12-04T13:53:33+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":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-find-large-files-example\/#article","isPartOf":{"@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-find-large-files-example\/"},"author":{"name":"Toni","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/69a7de154310f99cedabb63c580291b2"},"headline":"Linux Find Large Files Example","datePublished":"2016-09-26T14:15:01+00:00","dateModified":"2017-12-04T13:53:33+00:00","mainEntityOfPage":{"@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-find-large-files-example\/"},"wordCount":705,"commentCount":2,"publisher":{"@id":"https:\/\/www.systemcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-find-large-files-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-find-large-files-example\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-find-large-files-example\/","url":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-find-large-files-example\/","name":"Linux Find Large Files Example - System Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.systemcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-find-large-files-example\/#primaryimage"},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-find-large-files-example\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/bash-logo.jpg","datePublished":"2016-09-26T14:15:01+00:00","dateModified":"2017-12-04T13:53:33+00:00","description":"Having our disk tidy and free of garbage occupies space is something we all want to do, but many times we don't pay attention at large files that are","breadcrumb":{"@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-find-large-files-example\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-find-large-files-example\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/shell-scripting\/bash\/linux-find-large-files-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-find-large-files-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 Find Large Files 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\/1812","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=1812"}],"version-history":[{"count":0,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts\/1812\/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=1812"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/categories?post=1812"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/tags?post=1812"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}