Display only subdirectories from given directories


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Display only subdirectories from given directories
# 1  
Old 04-24-2007
Display only subdirectories from given directories

Hi Genius,

I would like to display all the subdirectories only with timestamp.

For exmple:

Given Directory : orabkup

/orabkup
total 11365112
drwxr-xr-x 9 oracle oradba 256 Jan 03 16:01 db1

/orabkup/db1:
total 0
drwxr-xr-x 2 oracle oradba 256 Jan 03 16:01 ddl
drwxr-xr-x 2 oracle oradba 256 Jan 03 16:01 backupd_rw
drwxr-xr-x 2 oracle oradba 256 Jan 03 16:01 backupc_rw
drwxr-xr-x 2 oracle oradba 256 Jan 03 16:01 backupb_rw
drwxr-xr-x 2 oracle oradba 256 Jan 03 16:01 backupa_rw
drwxr-xr-x 2 oracle oradba 256 Jan 03 16:01 backup_ro
drwxr-xr-x 2 oracle oradba 256 Jan 03 16:01 backup

I would say thanks in advance whoever help me on above.

Regards,
HAA
# 2  
Old 04-25-2007
Display subfolders from given folder

Hi Genius,

I would like to display all the subdirectories only with timestamp.

For exmple:

Given Directory : orabkup

/orabkup
total 11365112
drwxr-xr-x 9 oracle oradba 256 Jan 03 16:01 db1

/orabkup/db1:
total 0
drwxr-xr-x 2 oracle oradba 256 Jan 03 16:01 ddl
drwxr-xr-x 2 oracle oradba 256 Jan 03 16:01 backupd_rw
drwxr-xr-x 2 oracle oradba 256 Jan 03 16:01 backupc_rw
drwxr-xr-x 2 oracle oradba 256 Jan 03 16:01 backupb_rw
drwxr-xr-x 2 oracle oradba 256 Jan 03 16:01 backupa_rw
drwxr-xr-x 2 oracle oradba 256 Jan 03 16:01 backup_ro
drwxr-xr-x 2 oracle oradba 256 Jan 03 16:01 backup

I would say thanks in advance whoever help me on above.

Regards,
HAA
# 3  
Old 04-25-2007
don't understand. What have you tried? doesn't the normal "ls -ltr" command work for you?, or maybe i misinterpret what you want.
# 4  
Old 04-25-2007
Code:
ls -lR | awk ' NF < 3 || /^d/ && sub($1" +"$2" +"$3" +"$4" +"$5,"") '

# 5  
Old 04-25-2007
First suggestion: I'm not sure if we have any users named Genius. And if we do, unless you are addressing the post to them, don't start with 'Hi Genius'.

Now for your question, you can use the find command to do this. It will, by default, recurse into any subdirectories that are present in your given directory. The find command goes like this:
Code:
find <dir to search in> -type d # this restricts the search to directories only

# example:
find /orabackup -type d -exec ls -ld {} \;

For more details on find, as always, lookup the man page.
# 6  
Old 04-25-2007
Once again Excellent reply Anbu.

Many thanks to u,

in same manner i want to display the size of the directory,permissions along with timestamp.

Regards,
HAA Smilie
# 7  
Old 04-25-2007
Quote:
Originally Posted by HAA
Once again Excellent reply Anbu.

Many thanks to u,

in same manner i want to display the size of the directory,permissions along with timestamp.

Regards,
HAA Smilie
Change sub function in above code to get what you need
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Zip all the files including directories - subdirectories

Hi, Is is possible to zip a folder and all its contents within the folder ( including sub-directories and files) into a zip file? and can regain the same structure if unzipped? Thanks (6 Replies)
Discussion started by: rudoraj
6 Replies

2. UNIX for Dummies Questions & Answers

Find directories without subdirectories

Hello, I have to find all directories, which contain files, but dont have subdirectories. For example if i have tree like: ├── kat11 │ ├── kat21 │ │ └── Dokument\ bez\ nazwy │ └── kat22 │ ├── kat31 │ │ └── Dokument\ bez\ nazwy │ └── kat32 │ └──... (13 Replies)
Discussion started by: eValker
13 Replies

3. Shell Programming and Scripting

push and pop directories and subdirectories

I need to use pushd and popd to navigate all of the subdirectories in my current directory. I know how to get into each subdirectory, add it to the stack, and pop back out, but i cant figure out how to get into subdirectories deeper than the first without adding a foreach and if statement for... (1 Reply)
Discussion started by: ollie88r
1 Replies

4. Shell Programming and Scripting

backup of directories and subdirectories

Hello I'm new to the area Bash scripting and that is why I have a search script that is run on my unix server and always when I start the server or every 24 hours The script will create backups of directories and subdirectories I never found what I'm here make a new thread ... (1 Reply)
Discussion started by: HansWurst
1 Replies

5. AIX

recursive archive directories and subdirectories

Hi everyone, Maybe this is simple question for many of you, but I get confused.:confused: How to archive a parent directory which contains some subdirectories and some files? I have searched this forum, there are some commands like tar,etc, I tried but can not be implemented in my system.... (6 Replies)
Discussion started by: wilsonSurya
6 Replies

6. Shell Programming and Scripting

Listing directories and subdirectories

How can list the directories and the subdirectories in a folder. It is possible with a single UNIX command. For example i have a folder named "archive" and another folder named "0808" and then multiple folders are there ... Can i list all the directories and subdirectories in the folder... (6 Replies)
Discussion started by: karansachdeva
6 Replies

7. Shell Programming and Scripting

display number of subdirectories

Can anyone tell me what command would display the number of subdirectories in the current or given location? (2 Replies)
Discussion started by: jjamd64
2 Replies

8. Windows & DOS: Issues & Discussions

Backup Directories and SubDirectories with log using DOS

Hello. I need to Backup an Directorie with Sub-directories and after that put in a log file. Then i need to copy several files and have a log file to. All that using old DOS. Could someone help ? Thanks in advance (1 Reply)
Discussion started by: osramos
1 Replies

9. UNIX for Dummies Questions & Answers

Compare/Diff between directories and subdirectories?

Hi, Does anybody know the cmd to compare two areas and print out the different files w/ path? I tried cmp and diff and dircmp but with no luck. Should I grep and print? For example: /aa/images/jan ..../images/feb /bb/images/jan ..../images/feb i want to print the compare,... (5 Replies)
Discussion started by: andylee80
5 Replies

10. UNIX for Dummies Questions & Answers

Permissions for Directories and Subdirectories

Is it possible to have a directory owned (by root) with permissions drwx------ and then have a sub directory of rwxrwxrwx. I know that this may be soo simple but I had no luck googling it. Thanks for your help (1 Reply)
Discussion started by: clancymf
1 Replies
Login or Register to Ask a Question