List of files in sub directory along with their properties


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers List of files in sub directory along with their properties
# 1  
Old 11-13-2006
List of files in sub directory along with their properties

How to view the list of the files in the sub directory along with their properties?

I mean

<folder1>
........<folder11>
..............<folder111>
......................MyFile_1111.txt
......................MyFile_1112.txt
..............<folder112>
......................MyFile_1121.txt
......................MyFile_1122.txt
........<folder12>
..............<folder121>
......................MyFile_1211.txt
......................MyFile_1212.txt
..............<folder122>
......................MyFile_1221.txt
......................MyFile_1222.txt
........<folder13>
..............<folder131>
..............<folder132>

Now, I want to view the list of the MyFile_11* along with their size and other
properties.

For Ex, when I run the command, I want the o/p to be some where close
to the one I mentioned below:
-rw-r--r-- 1 mybatch mydev 5564 Nov 13 15:53 /folder1/folder11/folder111/MyFile_1111.txt
-rw-r--r-- 1 mybatch mydev 5564 Nov 13 15:53 /folder1/folder11/folder111/MyFile_1112.txt
.....

Any help is appretiated.

Thanks,
Ravi
# 2  
Old 11-13-2006
Something like this?
Code:
find <folder1> -exec ls -ld {} \;

# 3  
Old 11-13-2006
Can you please clearly give me the command that I need to execute?
# 4  
Old 11-13-2006
Since I know the depth where the files are located, I used the
following command and I am able to get the required o/p

ls -l folder1/*/*/MyFile_11*

-rw-r--r-- 1 mybatch mydev 5564 Nov 13 15:53 /folder1/folder11/folder111/MyFile_1111.txt
-rw-r--r-- 1 mybatch mydev 5564 Nov 13 15:53 /folder1/folder11/folder111/MyFile_1112.txt

I am sure that this is the right way to achieve, but this is one
option I got now.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

List files with date, create directory, move to the created directory

Hi all, i have a folder, with tons of files containing as following, on /my/folder/jobs/ some_name_2016-01-17-22-38-58_some name_0_0.zip.done some_name_2016-01-17-22-40-30_some name_0_0.zip.done some_name_2016-01-17-22-48-50_some name_0_0.zip.done and these can be lots of similar files,... (6 Replies)
Discussion started by: charli1
6 Replies

2. Shell Programming and Scripting

Copy list of files from a keyword list to another directory

Hello, I have a folder with a massive amount of files, and I want to copy out a specific subset of the files to a new directory. I would like to use a text file with the filenames listed, but can't get it to work. The thing I'm hung up on is that the folder names in the path can and do have... (5 Replies)
Discussion started by: twjolson
5 Replies

3. UNIX for Dummies Questions & Answers

List the files in directory

hi, i have so many files in my directory. for example $: ls abc.12 abc.23 abc.45 abc.56 abc.123 abc.343 abc.567 abc.345 like this. from this list, how to display only the files which ends with two numbers. If i give abc.*, it displays all the files. (2 Replies)
Discussion started by: JSKOBS
2 Replies

4. Shell Programming and Scripting

List files in a directory

Hi Experts, I need to list the files in a directory which have more than one lines Please help Thanks (1 Reply)
Discussion started by: gwrm
1 Replies

5. Shell Programming and Scripting

find list of files from a list and copy to a directory

I will be very grateful if someone can help me with bash shell script that does the following: I have a list of filenames: A01_155716 A05_155780 A07_155812 A09_155844 A11_155876 that are kept in different sub directories within my current directory. I want to find these files and copy... (3 Replies)
Discussion started by: manishabh
3 Replies

6. Homework & Coursework Questions

List Files and Directory

Use and complete the template provided. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data i need to list all files in date/time order that contain the word "alpha" but not the the word "beta". 2. Relevant equations find or ls ... (7 Replies)
Discussion started by: jeht
7 Replies

7. UNIX for Dummies Questions & Answers

Find files and display only directory list containing those files

I have a directory (and many sub dirs beneath) on AIX system, containing thousands of file. I'm looking to get a list of all directory containing "*.pdf" file. I know basic syntax of find command, but it gives me list of all pdf files, which numbers in thousands. All I need to know is, which... (4 Replies)
Discussion started by: r7p
4 Replies

8. Shell Programming and Scripting

To list files only in a directory

Hi all, I want to list all the files in a directory but not present in the subdirectories. I want the name of each file with its full pathname. ls /opt/cems/log/cemsdbg/db/* /opt/cems/log/cemsdbg/db/securitydb_backup_2009_01_12_06:00:54.log /opt/cems/log/cemsdbg/db/standby_monitor.sql... (5 Replies)
Discussion started by: dipashre
5 Replies

9. UNIX for Dummies Questions & Answers

cp list of files into another directory

Hi All, i am trying to copy files from a directory to another. here is what I am doing ls -ltr INTER* THE output is list of 80 files. i have to copy all these 80 files into another directory ( say /home/pavi/folder) at a time. can anyone please suggest me how do I do it. thanks pavi (4 Replies)
Discussion started by: pavan_test
4 Replies

10. UNIX for Dummies Questions & Answers

Directory properties

I have set up php shop and it required command line access which i have I executed the install.pl script and everything went OK but when I tried to access the admin foler via the www @ www.helloni.co.uk/shophtml/admin/ i get a forbidden error. I know I have to change the attribs of the folder... (8 Replies)
Discussion started by: trekker
8 Replies
Login or Register to Ask a Question