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
Recursive call to find files and directories in Shell script from current path. Ramit_Gupta Shell Programming and Scripting 2 10-07-2008 04:33 AM
shell-init: could not get current directory: getcwd: cannot access parent directories babu.knb SUN Solaris 6 10-03-2008 10:11 AM
searching content of files in the current and sub directories tiger99 Shell Programming and Scripting 4 01-23-2008 02:11 AM
How one can list only the name of directories present in the directory by using ls co amolpatil54321 UNIX for Dummies Questions & Answers 2 02-01-2004 11:38 AM
list file's by size order in sepecfied directory and sub directories ferretman UNIX for Dummies Questions & Answers 2 01-03-2002 06:55 PM

Closed Thread
 
Submit Tools LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 01-06-2009
Registered User
 

Join Date: Jan 2009
Posts: 2
List files that are not directories from current directory

I can't manage to list all files that are not directories from current directory.
Sponsored Links
  #2 (permalink)  
Old 01-06-2009
Registered User
 

Join Date: Jan 2009
Posts: 3
You could try using "find" instead:

find . -maxdepth 1 -type f
  #3 (permalink)  
Old 01-06-2009
Ikon's Avatar
Registered User
 

Join Date: Jul 2008
Location: Phoenix, Arizona
Posts: 665
Code:
 find . -maxdepth 1 -type f -exec ls -l {} \;
Google The UNIX and Linux Forums
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:




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


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66