{"id":15766,"date":"2023-08-20T12:00:15","date_gmt":"2023-08-20T06:30:15","guid":{"rendered":"https:\/\/www.binarytides.com\/?p=15766"},"modified":"2023-09-01T12:29:16","modified_gmt":"2023-09-01T06:59:16","slug":"locate-command-examples-in-linux","status":"publish","type":"post","link":"https:\/\/www.binarytides.com\/locate-command-examples-in-linux\/","title":{"rendered":"12 &#8220;locate&#8221; command examples in Linux &#8211; Find files and directories quickly"},"content":{"rendered":"<p>One of the most common Linux operations is locating a particular file by its name. In Linux, the 'locate' command serves the purpose as it is used to search a file or a directory by name. <\/p>\t\t<div class=\"display-ad-unit mobile-wide bsa\" style=\"background:#fff3f3; height:315px;\">\n\n<!-- BinaryTides_S2S_InContent_ROS_Pos1 -->\n<style>\n\t@media only screen and (min-width: 0px) and (min-height: 0px) {\n\t\tdiv[id^=\"bsa-zone_1611170977806-3_123456\"] {\n\t\t\tmin-width: 300px;\n\t\t\tmin-height: 250px;\n\t\t}\n\t}\n\t@media only screen and (min-width: 640px) and (min-height: 480px) {\n\t\tdiv[id^=\"bsa-zone_1611170977806-3_123456\"] {\n\t\t\tmin-width: 300px;\n\t\t\tmin-height: 250px;\n\t\t}\n\t}\n<\/style>\n<div id=\"bsa-zone_1611170977806-3_123456\"><\/div>\n\n\n<\/div>\n<!-- Time: 2.4080276489258E-5, Pos: 195, Key: ad_unit_1 -->\n\n\n<p>It is similar to the 'find' command, which locates the file in the filesystem. But here, it searches the file in the database, both being the most popular ones. The locate command runs in the background and is much faster when compared to the find command. <\/p>\n<p>In this article, we'll demonstrate how to use the locate command. <\/p>\n<h3>Installation<\/h3>\n<p>Before we begin, let's check if the 'locate' package already exists in your system. It may or may not be pre-installed in your Linux system as it depends on how the system was provisioned and the Linux distribution. <\/p>\n<p>To check, we have to open the terminal, type 'locate' and press Enter. If the system already has the locate package installed, it will return the following - locate: no pattern to search for specified. Otherwise, it will display - locate command not found. <\/p>\n<p>Now, in order to install locate, we can simply use the package manager of the distro. <\/p>\n<p><b>For Ubuntu & Debian<\/b> <\/p>\n<pre class=\"terminal\" >$ sudo apt install mlocate<\/pre>\n<p><b>For CentOs & Fedora<\/b><\/p>\n<pre class=\"terminal\" >$ sudo yum install mlocate<\/pre>\n<h3>How the locate command works?<\/h3>\n<p>The locate command searches for a specific pattern through a database file usually generated by the updatedb command. During the installation of the mlocate package, a cron job is created, which executes the updatedb command every 24 hours (customizable) to ensure time-to-time updation of data in the database. <\/p>\n<p>For further information about the cron job, we can inspect the \/etc\/cron.daily\/mlocate file. <\/p>\n<p>The database can be manually updated using the updatedb command as root or any user with sufficient privileges. <\/p>\n<p>Depending on the number of files and directories and the system performance, the update might take a while. Any files created after the update will not reflect in the database.<\/p>\n<h3>Syntax<\/h3>\n<p>locate [OPTION] PATTERN\u2026 <\/p>\n<p>The locate command, if used without any options, is expected to return or display the absolute path of all files and directories that matches the searched pattern and also for which the user has read access. <\/p>\n<p>Below are a few common examples of the locate command. <\/p>\n<h3>1. Locate command without Options<\/h3>\n<p>To search for a file called '.bash_history', we would type:<\/p>\n<pre class=\"terminal\" >locate .bash_history<\/pre>\n<p>The output will contain results of all files that have the string '.bash_history' in it. Since we have only one specific file, we get the following output: <\/p>\n<pre class=\"terminal\" >\/home\/test\/.bash_history<\/pre>\n<h3>2. Limit search queries to a specific number<\/h3>\n<p>This is done to reduce redundancy. To limit the search queries to a specific number, we can use the <strong>'-n'<\/strong> command. <\/p>\n<pre class=\"terminal\" >$ locate &quot;*.html&quot; -n 5<\/pre>\n<p><strong>Sample output<\/strong><\/p>\n<pre class=\"terminal\" >\/home\/test\/.vscode-server\/bin\/695af097c7bd098fbf017ce3ac85e09bbc5dda06\/extensions\/github authentication\/media\/index.html \r\n\/home\/test\/.vscode-server\/bin\/695af097c7bd098fbf017ce3ac85e09bbc5dda06\/extensions\/micros oft-authentication\/media\/index.html \r\n\/home\/test\/env\/lib\/python3.10\/site-packages\/django\/contrib\/admin\/templates\/admin\/404.html \/home\/test\/env\/lib\/python3.10\/site-packages\/django\/contrib\/admin\/templates\/admin\/500.html \/home\/test\/env\/lib\/python3.10\/site-packages\/django\/contrib\/admin\/templates\/admin\/actions.html<\/pre>\t\t<div class=\"display-ad-unit mobile-wide bsa\" style=\"background:#fff3f3; height:315px;\">\n\n\n<!-- BinaryTides_S2S_InContent_ROS_Pos2 -->\n<style>\n\t@media only screen and (min-width: 0px) and (min-height: 0px) {\n\t\tdiv[id^=\"bsa-zone_1611334361252-4_123456\"] {\n\t\t\tmin-width: 300px;\n\t\t\tmin-height: 250px;\n\t\t}\n\t}\n\t@media only screen and (min-width: 640px) and (min-height: 480px) {\n\t\tdiv[id^=\"bsa-zone_1611334361252-4_123456\"] {\n\t\t\tmin-width: 300px;\n\t\t\tmin-height: 250px;\n\t\t}\n\t}\n<\/style>\n<div id=\"bsa-zone_1611334361252-4_123456\"><\/div>\n\n\n<\/div>\n<!-- Time: 5.5074691772461E-5, Pos: 4237, Key: ad_unit_2 -->\n\n\n<p>The results will show the first 5 files that end with .html. <\/p>\n<h3>3. List the number of matching entries<\/h3>\n<p>To count the number of occurrences of a file name or search pattern using the locate command, we can invoke the <strong>'-c'<\/strong> option as shown. <\/p>\n<pre class=\"terminal\" >$ locate -c [txt]*<\/pre>\n<p><strong>Sample output<\/strong> <\/p>\n<pre class=\"terminal\" >$ locate -c &ldquo;*.txt*&rdquo; \r\n1241<\/pre>\n<p>In the above example, the output shows there are 1241 .txt files in the database. <\/p>\n<h3>4. Refresh mlocate Database<\/h3>\n<p>The locate command is completely dependent on the database called mlocate. Hence, it is vital to frequently update the database for proper functioning of the utility. <\/p>\n<p>In order to update the mlocate database, we use the <strong>'updatedb'<\/strong> command. It has to be executed by the root user or any user with privileges of the root user. <\/p>\n<pre class=\"terminal\" >$ sudo updatedb<\/pre>\n<h3>5. List only files present in the system<\/h3>\n<p>One of the major drawbacks of using the locate command is that it still returns the results of files whose physical copies are erased or deleted from the system, even when we have an updated mlocate database. <\/p>\n<p>In order to avoid this problem, we can use the <strong>'-e'<\/strong> option with the locate command. The process searches the system to confirm the existence of the file that has been requested if it is still present in the mlocate database.<\/p>\n<pre class=\"terminal\" >$ locate -i -e *test.txt*<\/pre>\n<p><strong>Sample output<\/strong> <\/p>\n<pre class=\"terminal\" >\/home\/test\/test.txt<\/pre>\n<h3>6. Display locate outputs ignoring case sensitive elements<\/h3>\n<p>The locate command is configured in such a manner that it will return two different outputs for \"test.txt\" and \"TEST.txt\", respectively.<br \/>\nTo ignore the case sensitivity and show outputs for both \"test.txt\" and \"TEST.txt\", we can use the <strong>'-i'<\/strong> option with the locate command.<\/p>\n<pre class=\"terminal\" >$ locate -i &ldquo;test.txt&rdquo;<\/pre>\n<p><strong>Sample output<\/strong><\/p>\n<pre class=\"terminal\" >\/home\/test\/TEST.txt \r\n\/home\/test\/test.txt<\/pre>\n<h3>7. Check the status of the locate database<\/h3>\n<p>If we ever want to check the current status of the mlocate.db (mlocate database), we can view the analytics by using the <strong>'-S'<\/strong> command. <\/p>\n<pre class=\"terminal\" >$ locate -S<\/pre>\n<p><strong>Sample output<\/strong><\/p>\n<pre class=\"terminal\" >Database \/var\/lib\/mlocate\/mlocate.db: \r\n31,234 directories \r\n3,23,345 files \r\n1,32,456 files \r\n2,34,23,656 bytes in file names \r\n1,08,23,213 bytes used to store database<\/pre>\n<h3>8. Locate outputs in a single line<\/h3>\n<p>By default, locate separator is the newline (\\\\n) character. We also have options like using the ASCII NUL, which can be achieved by using the <strong>'-0'<\/strong> option with the locate command. <\/p>\t\t<div class=\"display-ad-unit mobile-wide bsa\" style=\"background:#fff3f3; height:315px;\">\n<!-- BinaryTides_S2S_InContent_ROS_Pos3 -->\n<style>\n\t@media only screen and (min-width: 0px) and (min-height: 0px) {\n\t\tdiv[id^=\"bsa-zone_1672330111515-1_123456\"] {\n\t\t\tmin-width: 300px;\n\t\t\tmin-height: 250px;\n\t\t}\n\t}\n\t@media only screen and (min-width: 640px) and (min-height: 480px) {\n\t\tdiv[id^=\"bsa-zone_1672330111515-1_123456\"] {\n\t\t\tmin-width: 300px;\n\t\t\tmin-height: 250px;\n\t\t}\n\t}\n<\/style>\n<div id=\"bsa-zone_1672330111515-1_123456\"><\/div>\n<\/div>\n<!-- Time: 3.4093856811523E-5, Pos: 7741, Key: ad_unit_3 -->\n\n\n<pre class=\"terminal\" >$ locate -i -0 *test.txt&rdquo;<\/pre>\n<p>Sample output<\/p>\n<pre class=\"terminal\" >\/home\/test\/TEST.txt\/home\/test\/test.txt<\/pre>\n<h3>9. Ignore error messages in locate<\/h3>\n<p>Sometimes, when we try to access the mlocate.db, it returns unnecessary error messages creating more confusion and stating that we do not have the required permissions for direct access to the database as we're not the root user. <\/p>\n<p>To suppress these error messages, we can use the <strong>'-q'<\/strong> option with the locate command. <\/p>\n<pre class=\"terminal\" >$ locate &ldquo;\\*.dat&rdquo; -q*<\/pre>\n<h3>10. Choose a different mlocate location<\/h3>\n<p>Imagine a scenario where we're inputting queries looking for results not present in the mlocate database. In this case, we'd like to choose the right database present somewhere in the same system. This can be achieved using the <strong>'-d'<\/strong> option with the locate command. <\/p>\n<pre class=\"terminal\" >$ locate -d &lt;new_db_path&gt; &lt;filename&gt;<\/pre>\n<p>Locate command is probably one of those utility commands that covers almost everything we ask it to perform. To keep the process efficient, the mlocate database, i.e., mlocate.db needs to be updated frequently. <\/p>\n<h3>11. Format the output - less option<\/h3>\n<p>When there's a long list of files in the output, we can use the locate command with <strong>'less'<\/strong> option for better readability. <\/p>\n<pre class=\"terminal\" >$ locate mysql | less<\/pre>\n<p><strong>Sample output<\/strong><\/p>\n<pre class=\"terminal\" >\/etc\/mysql \r\n\/etc\/php\/8.2\/mods-available\/mysqli.ini \r\n\/etc\/php\/8.2\/mods-available\/mysqlnd.ini \r\n\/etc\/php\/8.2\/mods-available\/pdo_mysql.ini \r\n\/etc\/rc0.d\/K01mysql \r\n\/etc\/rc1.d\/K01mysql \r\n\/etc\/rc2.d\/S01mysql \r\n\/etc\/rc3.d\/S01mysql \r\n\/etc\/rc4.d\/S01mysql \r\n\/etc\/rc5.d\/S01mysql \r\n\/etc\/rc6.d\/K01mysql \r\n\/etc\/systemd\/system\/multi-user.target.wants\/mysql.service\r\n\/home\/hsf\/.mysql_history \r\n\/snap\/core20\/1822\/etc\/apparmor.d\/abstractions\/mysql \r\n\/snap\/core20\/1822\/usr\/share\/bash-completion\/completions\/mysql \r\n\/snap\/core20\/1822\/usr\/share\/bash-completion\/completions\/mysqladmin \r\n:<\/pre>\n<h3>12. Format the output - more option<\/h3>\n<p>If the output is long, we can consider piping the output to more commands for easier scrolling. <\/p>\n<pre class=\"terminal\" >$ locate mysql | more<\/pre>\n<p>And we get the entire list of mysql files. <\/p>\n<h3>Conclusion<\/h3>\n<p>Locate command has its own database. It is easy and quick enough to find a particular file location on the system. In this article, we've learnt the concepts of locate command in Linux with appropriate examples, each having a different use case. <\/p>\n\n<!-- SMARTADDR: No ad unit (ad_unit_4) was added at location: 11241. Content Length: 10985 -->\n<!-- SMARTADDR: No ad unit (ad_unit_5) was added at location: 11241. Content Length: 11080 -->","protected":false},"excerpt":{"rendered":"<p>One of the most common Linux operations is locating a particular file by its name. In Linux, the &#8216;locate&#8217; command serves the purpose as it is used to search a file or a directory by name. It is similar to the &#8216;find&#8217; command, which locates the file in the filesystem. But here, it searches the&#8230; <span class=\"read-more\"><a href=\"https:\/\/www.binarytides.com\/locate-command-examples-in-linux\/\">Read More &raquo;<\/a><\/span><\/p>\n","protected":false},"author":1,"featured_media":15893,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[865],"tags":[],"class_list":["post-15766","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-hardware"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>12 &quot;locate&quot; command examples in Linux - Find files and directories quickly - BinaryTides<\/title>\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.binarytides.com\/locate-command-examples-in-linux\/\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Silver Moon\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.binarytides.com\/locate-command-examples-in-linux\/\",\"url\":\"https:\/\/www.binarytides.com\/locate-command-examples-in-linux\/\",\"name\":\"12 \\\"locate\\\" command examples in Linux - Find files and directories quickly - BinaryTides\",\"isPartOf\":{\"@id\":\"https:\/\/www.binarytides.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.binarytides.com\/locate-command-examples-in-linux\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.binarytides.com\/locate-command-examples-in-linux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.binarytides.com\/blog\/wp-content\/uploads\/2023\/08\/search-for-files.jpg\",\"datePublished\":\"2023-08-20T06:30:15+00:00\",\"dateModified\":\"2023-09-01T06:59:16+00:00\",\"author\":{\"@id\":\"https:\/\/www.binarytides.com\/#\/schema\/person\/ce24c6ddfa0368f9a08bcf46505884dd\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.binarytides.com\/locate-command-examples-in-linux\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.binarytides.com\/locate-command-examples-in-linux\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.binarytides.com\/locate-command-examples-in-linux\/#primaryimage\",\"url\":\"https:\/\/www.binarytides.com\/blog\/wp-content\/uploads\/2023\/08\/search-for-files.jpg\",\"contentUrl\":\"https:\/\/www.binarytides.com\/blog\/wp-content\/uploads\/2023\/08\/search-for-files.jpg\",\"width\":1920,\"height\":1080,\"caption\":\"Search for Files\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.binarytides.com\/locate-command-examples-in-linux\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.binarytides.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"12 &#8220;locate&#8221; command examples in Linux &#8211; Find files and directories quickly\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.binarytides.com\/#website\",\"url\":\"https:\/\/www.binarytides.com\/\",\"name\":\"BinaryTides\",\"description\":\"News, Technology, Entertainment and more\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.binarytides.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.binarytides.com\/#\/schema\/person\/ce24c6ddfa0368f9a08bcf46505884dd\",\"name\":\"Silver Moon\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.binarytides.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/67ac3d58b656585dc0201e900a67f4197eb0c3ef2d1f83dd8f95a0b497cd97da?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/67ac3d58b656585dc0201e900a67f4197eb0c3ef2d1f83dd8f95a0b497cd97da?s=96&r=g\",\"caption\":\"Silver Moon\"},\"description\":\"A Tech Enthusiast, Blogger, Linux Fan and a Software Developer. Writes about Computer hardware, Linux and Open Source software and coding in Python, Php and Javascript. He can be reached at binarytides@gmail.com.\",\"url\":\"https:\/\/www.binarytides.com\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"12 \"locate\" command examples in Linux - Find files and directories quickly - BinaryTides","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.binarytides.com\/locate-command-examples-in-linux\/","twitter_misc":{"Written by":"Silver Moon","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.binarytides.com\/locate-command-examples-in-linux\/","url":"https:\/\/www.binarytides.com\/locate-command-examples-in-linux\/","name":"12 \"locate\" command examples in Linux - Find files and directories quickly - BinaryTides","isPartOf":{"@id":"https:\/\/www.binarytides.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.binarytides.com\/locate-command-examples-in-linux\/#primaryimage"},"image":{"@id":"https:\/\/www.binarytides.com\/locate-command-examples-in-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/www.binarytides.com\/blog\/wp-content\/uploads\/2023\/08\/search-for-files.jpg","datePublished":"2023-08-20T06:30:15+00:00","dateModified":"2023-09-01T06:59:16+00:00","author":{"@id":"https:\/\/www.binarytides.com\/#\/schema\/person\/ce24c6ddfa0368f9a08bcf46505884dd"},"breadcrumb":{"@id":"https:\/\/www.binarytides.com\/locate-command-examples-in-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.binarytides.com\/locate-command-examples-in-linux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.binarytides.com\/locate-command-examples-in-linux\/#primaryimage","url":"https:\/\/www.binarytides.com\/blog\/wp-content\/uploads\/2023\/08\/search-for-files.jpg","contentUrl":"https:\/\/www.binarytides.com\/blog\/wp-content\/uploads\/2023\/08\/search-for-files.jpg","width":1920,"height":1080,"caption":"Search for Files"},{"@type":"BreadcrumbList","@id":"https:\/\/www.binarytides.com\/locate-command-examples-in-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.binarytides.com\/"},{"@type":"ListItem","position":2,"name":"12 &#8220;locate&#8221; command examples in Linux &#8211; Find files and directories quickly"}]},{"@type":"WebSite","@id":"https:\/\/www.binarytides.com\/#website","url":"https:\/\/www.binarytides.com\/","name":"BinaryTides","description":"News, Technology, Entertainment and more","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.binarytides.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.binarytides.com\/#\/schema\/person\/ce24c6ddfa0368f9a08bcf46505884dd","name":"Silver Moon","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.binarytides.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/67ac3d58b656585dc0201e900a67f4197eb0c3ef2d1f83dd8f95a0b497cd97da?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/67ac3d58b656585dc0201e900a67f4197eb0c3ef2d1f83dd8f95a0b497cd97da?s=96&r=g","caption":"Silver Moon"},"description":"A Tech Enthusiast, Blogger, Linux Fan and a Software Developer. Writes about Computer hardware, Linux and Open Source software and coding in Python, Php and Javascript. He can be reached at binarytides@gmail.com.","url":"https:\/\/www.binarytides.com\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.binarytides.com\/wp-json\/wp\/v2\/posts\/15766","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.binarytides.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.binarytides.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.binarytides.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.binarytides.com\/wp-json\/wp\/v2\/comments?post=15766"}],"version-history":[{"count":5,"href":"https:\/\/www.binarytides.com\/wp-json\/wp\/v2\/posts\/15766\/revisions"}],"predecessor-version":[{"id":15790,"href":"https:\/\/www.binarytides.com\/wp-json\/wp\/v2\/posts\/15766\/revisions\/15790"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.binarytides.com\/wp-json\/wp\/v2\/media\/15893"}],"wp:attachment":[{"href":"https:\/\/www.binarytides.com\/wp-json\/wp\/v2\/media?parent=15766"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.binarytides.com\/wp-json\/wp\/v2\/categories?post=15766"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.binarytides.com\/wp-json\/wp\/v2\/tags?post=15766"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}