Linux/MacOSX : Search for files by filename and extension with find command
Jotting down these useful commands here for future references, never know when I might need to recall them again on how to search for files by filename or extension.
To search current directory and directories under the current directory for files with .go
extension :
>find ~ -type f | grep "\.go$"
Sample output :
/Users/admin/variables.go
/Users/admin/writebyte.go
/Users/admin/writerune.go
/Users/admin/writestring.go
/Users/admin/x509.go
If need to search for more than 1 type of file extension, use grep -E
command to combine the extensions. For instance, to search current directory and directories under the current directory for files with .go
, .py
and .php
extensions :
>find ~ -type f | grep -E "\.go$|\.py$|\.php$"
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+5.8k Golang : Frobnicate or tweaking a string example
+23k Golang : Gorilla mux routing example
+7.7k Javascript : Push notifications to browser with Push.js
+5.8k Linux/Unix/PHP : Restart PHP-FPM
+7.4k Golang : Of hash table and hash map
+9.3k Golang : Write multiple lines or divide string into multiple lines
+5.4k Javascript : Change page title to get viewer attention
+10.2k Golang : Edge detection with Sobel method
+4.7k Mac OSX : Get disk partitions' size, type and name
+9k Android Studio : Image button and button example
+10.3k Golang : Print how to use flag for your application example
+28.3k Golang : Connect to database (MySQL/MariaDB) server