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

  • Home
  • SEARCH
  • 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 9016427
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T03:59:35+00:00 2026-06-16T03:59:35+00:00

I want to run a command on a directory to print out all files

  • 0

I want to run a command on a directory to print out all files in that directory, then grep all files recursively for those found file names, basically to check and see if X file is used in any PHP or HTML files in a directory. If X file is found to NOT be in any files, print it’s name.

I have this so far, I can’t figure out how to pass to grep what I have then print those without results.

find . -path ./images -prune -o -name '*' -type f -print | sed 's!.*/!!'

I could use exec as so:

find . -path ./images -prune -o -name '*' -type f -exec grep -R '{}' ./* \;

But then I can’t sed away the ./dir/etc/ from in front of the file names that find gives me.

The other part of the query that is perplexing me is I can’t figure out how to get grep or find to print those without results in grep.

  • 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-06-16T03:59:37+00:00Added an answer on June 16, 2026 at 3:59 am

    I think something like this might help:

    $ find . -type f -printf "%f\n" | grep --color -R -f - .
    

    In this example, -printf "%f\n" causes find to return only the file name without the path. The result is a file used as the search patterns for grep and is passed as input on stdin using -f -. The -R tells grep to search recursively (which you already know). The --color makes things look nice.

    To list only the matching file names use grep -l -R -f - .. Then to find the files without results, you will have to find the files that are not in that list.

    This post might help you with that.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to run a command, that will count the number of words in
tmp-file contains: database_1 database_2 database_3 I want to run a command like mysqldump DATABASE
I want to run a mysql command and set the output of that to
I've got a small Perl program that I want to run on the command
Given a run configuration in Eclipse, I want to print out the associated shell
I want to use Kava to unzip all files within a particular directory and
I want to run a find command but only find the files in directories,
ls /home/user/new/*.txt prints all txt files in that directory. However it prints the output
i want to run some command on several machine using ssh. I know it
I want to run a bash command once for each line of a text

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.