Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6807145
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T19:47:46+00:00 2026-05-26T19:47:46+00:00

There must be a better / shorter way to do this: # Find files

  • 0

There must be a better / shorter way to do this:

# Find files that contain <string-to-find> in current directory
#   (including sub directories) 
$ find . | xargs grep <string-to-find>

Also, to search only e.g. HTML files:

 # find . | grep html$ | xargs grep <string-to-find>

Thanks beforehand!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T19:47:47+00:00Added an answer on May 26, 2026 at 7:47 pm
    find . -name \*.html
    

    or, if you want to find files with names matching a regular expression:

    find . -regex filename-regex.\*\.html 
    

    or, if you want to search for a regular expression in files with names matching a regular expression

    find . -regex filename-regex.\*\.html -exec grep -H string-to-find {} \;
    

    The grep argument -H outputs the name of the file, if that’s of interest. If not, you can safely remove it and simply use grep. This will instruct find to execute grep string-to-find filename for each file name it finds, thus avoiding the possibility of the list of arguments being too long, and the need for find to finish executing before it can pass its results to xargs.


    To address your examples:

    find . | xargs grep <string-to-find>
    

    could be replaced with

    find . -exec grep -H string-to-find {} \;
    

    and

    find . | grep html$ | xargs grep <string-to-find>
    

    could be replaced with

    find . -name \*.html -exec grep -H string-to-find {} \;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

There must be a better way of writing this- I'm just not sure how
I'm guessing that there must be a better functional way of expressing the following:
Is there a better way of doing this without having the repeated sub queries
I'm sure there must be a much better way of doing this. I'm trying
This rails validation code is so ugly, and there must be a better way
What is the most efficient way to do this? There must be some better
There must be an easy way to do this, but somehow I can wrap
There must be an easy way to do this. I build a Flex app
I am sure there must be a relatively straightforward way to do this, but
I am hoping there is a better way to do this. Do I really

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.