The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM


UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !!

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
how to list the files using File Descriptors shyjuezy UNIX for Dummies Questions & Answers 2 05-14-2008 11:05 PM
How to create a list of entries without vi mpc8250 Shell Programming and Scripting 3 02-12-2008 11:56 PM
Searching for all entries over 45 days chris654 Shell Programming and Scripting 2 01-11-2008 10:25 AM
Comparing 2 list and deleting deuplicate entries eltinator Shell Programming and Scripting 10 08-15-2007 10:35 AM
searching for list of empty directories man80 Shell Programming and Scripting 4 10-15-2004 01:00 AM

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 10-18-2006
Registered User
 

Join Date: Oct 2006
Posts: 14
Searching list of entries in file for actual files in dir

Hi all,

I have a file entries.txt that contains a number of entries all on seperate lines e.g.

test1
test2
test3
test4

Then in a directory called /TestFiles I have a number of files that could contain the above text in the file name

e.g. qwertytest1.csv qwertytest2.csv qwertytest3.csv

How can I search the entries.txt to see if if the entries exist in the TestFiles directory?

Thanks,
Reply With Quote
Forum Sponsor
  #2 (permalink)  
Old 10-18-2006
Glenn Arndt's Avatar
Anomalous Lurker
 

Join Date: Feb 2006
Location: Indianapolis, IN
Posts: 255
Code:
while read entry; do
  for f in /TestFiles/*$entry*; do
    print "Found $f"
  done
done < entries.txt
Reply With Quote
  #3 (permalink)  
Old 10-18-2006
Registered User
 

Join Date: Mar 2006
Location: Bangalore,India
Posts: 1,397
Code:
ls /TestFiles/* | grep -f entries.txt
Reply With Quote
Google UNIX.COM
Reply

Thread Tools
Display Modes




All times are GMT -7. The time now is 02:15 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008 The CEP Blog All Rights Reserved -Ad Management by RedTyger Visit The Global Fact Book

Content Relevant URLs by vBSEO 3.2.0