LINUX LITE 7.2 FINAL RELEASED - SEE RELEASE ANNOUNCEMENTS SECTION FOR DETAILS


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
file type/category search?
#4
This will find all the files with the extensions of .mp3 and .png, (as I don't have any music files other than .mp3 and I don't have any video files, so I used these extensions to test it works),  just extend it as below to include whatever file types you want.

Code:
find . -type f \( -name "*.mp3" -o -name "*.png" \)

the . after find will make it search in the current working directory, otherwise remove it for a wider search outside the current directory.
Reply


Messages In This Thread
file type/category search? - by bigskill - 10-26-2018, 08:30 PM
Re: file type/category search? - by bitsnpcs - 10-26-2018, 08:36 PM
Re: file type/category search? - by bigskill - 10-26-2018, 08:53 PM
Re: file type/category search? - by bitsnpcs - 10-26-2018, 09:28 PM
Re: file type/category search? - by firenice03 - 10-26-2018, 09:50 PM

Forum Jump:


Users browsing this thread: 2 Guest(s)