The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Stopping tail -f when certain string found? jake657 Shell Programming and Scripting 3 09-12-2008 01:20 AM
Add Item to Dock 0.0.8 iBot UNIX and Linux RSS News 0 06-03-2008 05:10 AM
replace item.. happyv UNIX for Dummies Questions & Answers 2 09-14-2007 12:09 AM
read or search the item in a file sequentially by position using unix shell script? lok UNIX for Dummies Questions & Answers 6 07-12-2006 06:53 AM
Append a field to the end of each line of a file based on searching another file. ultimate Shell Programming and Scripting 2 03-29-2005 10:21 AM

Reply
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 07-02-2009
davchris davchris is offline
Registered User
  
 

Join Date: Sep 2008
Posts: 8
Searching for file and stopping at first item found

Hello,

I try to write a shell script that would list all files on a directory and stop when it finds the first item specified on a find or ls command.
How can I tell to the find or ls command to stop when it finds the first ".doc" file for example ?

Thank you
  #2 (permalink)  
Old 07-02-2009
rakeshawasthi rakeshawasthi is offline
Registered User
  
 

Join Date: Aug 2004
Location: India
Posts: 375
Try...
Code:
for i in *
do
   if [[ `basename $i .doc` != "$i" ]]; then
      exit
   fi
   echo $i
done
  #3 (permalink)  
Old 07-02-2009
pludi's Avatar
pludi pludi is online now Forum Staff  
Moderator
  
 

Join Date: Dec 2008
Location: .at
Posts: 1,789
Pipe it into head, eg
Code:
find /path -type f -name '*.doc' -print | head -1
  #4 (permalink)  
Old 07-02-2009
scottn scottn is offline Forum Advisor  
VIP Member
  
 

Join Date: Jun 2009
Location: Zürich, CH
Posts: 968
Code:
find . -type f -name *.doc 2>/dev/null | sed "q"

Last edited by scottn; 07-02-2009 at 05:10 AM..
  #5 (permalink)  
Old 07-02-2009
davchris davchris is offline
Registered User
  
 

Join Date: Sep 2008
Posts: 8
thank you rakeshawasthi it works
but how can I make the script goes through subdirectories ?
I've tried this, but all the files comes into the "i" variable, so the script doesnt work :
IFS=
for i in $(find . -type f | awk -F"/" ' { print $2 } ' )
do
if [[ `basename "$i" .chm` != "$i" ]]; then
exit
fi
echo $i
done
  #6 (permalink)  
Old 07-02-2009
rakeshawasthi rakeshawasthi is offline
Registered User
  
 

Join Date: Aug 2004
Location: India
Posts: 375
Why you are using
Quote:
$(find . -type f | awk -F"/" ' { print $2 } ' )
Isnt this enough...
Code:
find . -type f -print
i.e.
for i in `find . -type f -print`
  #7 (permalink)  
Old 07-02-2009
ghostdog74 ghostdog74 is offline Forum Advisor  
Registered User
  
 

Join Date: Sep 2006
Posts: 2,422
Code:
ls -lRa /path |awk '/\.doc$/{print;exit}'
Sponsored Links
Reply

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -4. The time now is 04:07 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language translation by Google.
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0