{"id":1749,"date":"2022-09-15T12:30:00","date_gmt":"2022-09-15T17:30:00","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=1749"},"modified":"2022-09-15T08:01:50","modified_gmt":"2022-09-15T13:01:50","slug":"10-basic-find-commands-in-linux-with-examples","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/10-basic-find-commands-in-linux-with-examples\/","title":{"rendered":"10 Basic Find Commands in Linux With Examples"},"content":{"rendered":"\n<p>In this tutorial, we are going to explain the most used 10 find Commands in Linux with real examples.<\/p>\n\n\n\n<p>Find command is one of the most used <a href=\"https:\/\/www.linuxcloudvps.com\/blog\/10-useful-ssh-commands-in-linux\/\">commands in Linux<\/a> since with the find command we can easily locate files and folders on our server. The find command is executed with a couple of arguments and conditions that can easily locate files by users, groups, size, date and etc. <\/p>\n\n\n\n<p>In this tutorial, we are going to use the latest <a href=\"https:\/\/www.rosehosting.com\/ubuntu-hosting\/\">Ubuntu 22.04 as OS<\/a>, but you can choose any Linux distro to practice these examples by the &#8220;find&#8221; command. Let&#8217;s get started!<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li>Fresh install of Ubuntu 22.04 OS<\/li><li>User privileges: root or non-root user with sudo privileges<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Update the System<\/h2>\n\n\n\n<p>Before we start with the find command, we are going to update the system packages to the latest versions available.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt update -y &amp;&amp; sudo apt upgrade -y<\/pre>\n\n\n\n<p>Once the system is updated, we are ready to show you the basic find commands in Linux.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">1. Find files under a specific directory<\/h2>\n\n\n\n<p>To find some files located under a specific directory, for example, the html directory executes the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">find \/var\/www\/html -name index.html<\/pre>\n\n\n\n<p>You should receive the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:\/var\/www\/html# find \/var\/www\/html -name index.html\n\/var\/www\/html\/&lt;strong&gt;index.html&lt;\/strong&gt;<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">2. Find files under a specific directory by ignoring Case<\/h2>\n\n\n\n<pre class=\"wp-block-preformatted\">find \/var\/www\/html -iname index.html<\/pre>\n\n\n\n<p>You should receive the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:\/var\/www\/html# find \/var\/www\/html -iname index.html\n\/var\/www\/html\/&lt;strong&gt;Index.html&lt;\/strong&gt;\n\/var\/www\/html\/&lt;strong&gt;index.html&lt;\/strong&gt;\n\/var\/www\/html\/&lt;strong&gt;INDEX.html&lt;\/strong&gt;<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">3. Find all PHP files<\/h2>\n\n\n\n<p>To find all PHP files in some directory, execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">find . -type f -name &quot;*.php&quot;<\/pre>\n\n\n\n<p>You should receive output similar to this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:\/var\/www\/html# find . -type f -name &quot;*.php&quot;\n&lt;strong&gt;.\/config.php\n.\/database.php\n.\/index.php\n&lt;\/strong&gt;\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">4. Find all files and set the 644 permissions<\/h2>\n\n\n\n<p>To find all files in the current directory and set the <strong>644<\/strong> permissions to execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">find . -type f -exec chmod 644 {} \\;<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">5. Find all directories and set the 755 permissions<\/h2>\n\n\n\n<p>To find all directories in the current directory and set the <strong>755<\/strong> permissions to execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">find . -type d -exec chmod 755 {} \\;<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">6. Find the last modified files<\/h2>\n\n\n\n<p>To find the last ten days&#8217; modified files in the current directory, execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">find . -mtime 10<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">7. Find files bigger than the specified size<\/h2>\n\n\n\n<p>To find all files bigger than 50MB, for example, execute the following command<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">find . -type f -size +50M<\/pre>\n\n\n\n<p>You can search in bytes, megabytes, and gigabytes.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">8. Find files based on specific user<\/h2>\n\n\n\n<p>To find files based on a specific user (www-data) execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">find . -user www-data<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">9. Find files based on a specific group<\/h2>\n\n\n\n<p>To find files based on a specific group (www-data) execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">find . -group www-data<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">10. Man Command for find<\/h2>\n\n\n\n<p>Finally, the last command will be the <strong>man<\/strong> for find, which is a very useful command if you want to know everything about the find command and the parameters that can be used. Execute the <strong>man find<\/strong>, and you will receive the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@host:# man find\nFIND(1)                                                               General Commands Manual                                                               FIND(1)\n\nNAME\n       find - search for files in a directory hierarchy\n\nSYNOPSIS\n       find [-H] [-L] [-P] [-D debugopts] [-Olevel] [starting-point...] [expression]\n\nDESCRIPTION\n       This  manual  page  documents the GNU version of find.  GNU find searches the directory tree rooted at each given starting-point by evaluating the given ex\u2010\n       pression from left to right, according to the rules of precedence (see section OPERATORS), until the outcome is known (the left hand side is false  for  and\n       operations, true for or), at which point find moves on to the next file name.  If no starting-point is specified, `.&#039; is assumed.\n\n       If  you  are  using  find  in  an  environment where security is important (for example if you are using it to search directories that are writable by other\n       users), you should read the `Security Considerations&#039; chapter of the findutils documentation, which is called Finding Files and comes with findutils.   That\n       document also includes a lot more detail and discussion than this manual page, so you may find it a more useful source of information.\n\nOPTIONS\n       The  -H, -L and -P options control the treatment of symbolic links.  Command-line arguments following these are taken to be names of files or directories to\n       be examined, up to the first argument that begins with `-&#039;, or the argument `(&#039; or `!&#039;.  That argument and any following arguments are taken to be  the  ex\u2010\n       pression  describing what is to be searched for.  If no paths are given, the current directory is used.  If no expression is given, the expression -print is\n       used (but you should probably consider using -print0 instead, anyway).\n<\/pre>\n\n\n\n<p>That&#8217;s it. In this blog post, we explained the 10 basic find commands in Linux with real examples. These commands are very often used by system administrators and users that are familiar with Linux servers. If you find it difficult to use this command, you can always sign up for one of our <a href=\"https:\/\/www.rosehosting.com\/nvme-hosting\/\">NVMe VPS plans<\/a> and submit a support ticket. We are available 24\/7<\/p>\n\n\n\n<p>If you liked this post about ten basic find commands in Linux with an example, please share it with your friends on the social networks using the buttons on the left or simply leave a reply below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we are going to explain the most used 10 find Commands in Linux with real examples. Find command is one of the most used commands in Linux since with the find command we can easily locate files and folders on our server. The find command is executed with a couple of arguments &#8230; <a title=\"10 Basic Find Commands in Linux With Examples\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/10-basic-find-commands-in-linux-with-examples\/\" aria-label=\"More on 10 Basic Find Commands in Linux With Examples\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":1750,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[207,12],"tags":[258,27,132],"class_list":["post-1749","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-guide","category-tips-and-tricks","tag-find-commands","tag-linux","tag-linuxcloudvps"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>10 Basic Find Commands in Linux With Examples | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"In this tutorial, we are going to explain the most used 10 find Commands in Linux with real examples. Find command is one of the most used commands in\" \/>\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.linuxcloudvps.com\/blog\/10-basic-find-commands-in-linux-with-examples\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"10 Basic Find Commands in Linux With Examples | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, we are going to explain the most used 10 find Commands in Linux with real examples. Find command is one of the most used commands in\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/10-basic-find-commands-in-linux-with-examples\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxCloudVPS Blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/LinuxCloudVPS\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-15T17:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/09\/basic-find-commands-in-linux.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"372\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:site\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\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.linuxcloudvps.com\\\/blog\\\/10-basic-find-commands-in-linux-with-examples\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/10-basic-find-commands-in-linux-with-examples\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"10 Basic Find Commands in Linux With Examples\",\"datePublished\":\"2022-09-15T17:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/10-basic-find-commands-in-linux-with-examples\\\/\"},\"wordCount\":515,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/10-basic-find-commands-in-linux-with-examples\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/basic-find-commands-in-linux.webp\",\"keywords\":[\"find commands\",\"linux\",\"linuxcloudvps\"],\"articleSection\":[\"Guide\",\"Tips and Tricks\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/10-basic-find-commands-in-linux-with-examples\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/10-basic-find-commands-in-linux-with-examples\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/10-basic-find-commands-in-linux-with-examples\\\/\",\"name\":\"10 Basic Find Commands in Linux With Examples | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/10-basic-find-commands-in-linux-with-examples\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/10-basic-find-commands-in-linux-with-examples\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/basic-find-commands-in-linux.webp\",\"datePublished\":\"2022-09-15T17:30:00+00:00\",\"description\":\"In this tutorial, we are going to explain the most used 10 find Commands in Linux with real examples. Find command is one of the most used commands in\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/10-basic-find-commands-in-linux-with-examples\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/10-basic-find-commands-in-linux-with-examples\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/10-basic-find-commands-in-linux-with-examples\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/basic-find-commands-in-linux.webp\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/basic-find-commands-in-linux.webp\",\"width\":742,\"height\":372,\"caption\":\"basic find commands in linux\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/10-basic-find-commands-in-linux-with-examples\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"10 Basic Find Commands in Linux With Examples\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"name\":\"LinuxCloudVPS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\",\"name\":\"LinuxCloudVPS\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"width\":217,\"height\":25,\"caption\":\"LinuxCloudVPS\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"http:\\\/\\\/www.facebook.com\\\/LinuxCloudVPS\",\"https:\\\/\\\/x.com\\\/LinuxCloudVPS\",\"http:\\\/\\\/www.linkedin.com\\\/company\\\/linuxcloudvps-com\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/www.linuxcloudvps.com\\\/\"],\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"10 Basic Find Commands in Linux With Examples | LinuxCloudVPS Blog","description":"In this tutorial, we are going to explain the most used 10 find Commands in Linux with real examples. Find command is one of the most used commands in","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.linuxcloudvps.com\/blog\/10-basic-find-commands-in-linux-with-examples\/","og_locale":"en_US","og_type":"article","og_title":"10 Basic Find Commands in Linux With Examples | LinuxCloudVPS Blog","og_description":"In this tutorial, we are going to explain the most used 10 find Commands in Linux with real examples. Find command is one of the most used commands in","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/10-basic-find-commands-in-linux-with-examples\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2022-09-15T17:30:00+00:00","og_image":[{"width":742,"height":372,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/09\/basic-find-commands-in-linux.webp","type":"image\/webp"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/10-basic-find-commands-in-linux-with-examples\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/10-basic-find-commands-in-linux-with-examples\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"10 Basic Find Commands in Linux With Examples","datePublished":"2022-09-15T17:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/10-basic-find-commands-in-linux-with-examples\/"},"wordCount":515,"commentCount":1,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/10-basic-find-commands-in-linux-with-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/09\/basic-find-commands-in-linux.webp","keywords":["find commands","linux","linuxcloudvps"],"articleSection":["Guide","Tips and Tricks"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/10-basic-find-commands-in-linux-with-examples\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/10-basic-find-commands-in-linux-with-examples\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/10-basic-find-commands-in-linux-with-examples\/","name":"10 Basic Find Commands in Linux With Examples | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/10-basic-find-commands-in-linux-with-examples\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/10-basic-find-commands-in-linux-with-examples\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/09\/basic-find-commands-in-linux.webp","datePublished":"2022-09-15T17:30:00+00:00","description":"In this tutorial, we are going to explain the most used 10 find Commands in Linux with real examples. Find command is one of the most used commands in","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/10-basic-find-commands-in-linux-with-examples\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/10-basic-find-commands-in-linux-with-examples\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/10-basic-find-commands-in-linux-with-examples\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/09\/basic-find-commands-in-linux.webp","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/09\/basic-find-commands-in-linux.webp","width":742,"height":372,"caption":"basic find commands in linux"},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/10-basic-find-commands-in-linux-with-examples\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"10 Basic Find Commands in Linux With Examples"}]},{"@type":"WebSite","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website","url":"https:\/\/www.linuxcloudvps.com\/blog\/","name":"LinuxCloudVPS","description":"","publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization","name":"LinuxCloudVPS","url":"https:\/\/www.linuxcloudvps.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","width":217,"height":25,"caption":"LinuxCloudVPS"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/LinuxCloudVPS","https:\/\/x.com\/LinuxCloudVPS","http:\/\/www.linkedin.com\/company\/linuxcloudvps-com"]},{"@type":"Person","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/www.linuxcloudvps.com\/"],"url":"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1749","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/comments?post=1749"}],"version-history":[{"count":1,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1749\/revisions"}],"predecessor-version":[{"id":1751,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1749\/revisions\/1751"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/1750"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=1749"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=1749"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=1749"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}