Want to Get List of All directories


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Want to Get List of All directories
# 8  
Old 06-10-2009
ls -d */
ls -F | grep /
for only files ls -F | grep -v /
ls -l | ergrep ^d
Edit/Delete Message
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Not able to list sub-directories properly

HI, This is my home directory /home/xeccc5z under that I have so my directores and one among is server under the directory server again i have three files named linux,windows,aix am trying to execute the following command which should go into server directory and display the files inside... (4 Replies)
Discussion started by: xeccc5z
4 Replies

2. UNIX for Dummies Questions & Answers

List the directories, having given pattern in the directories name, sorted by creation date

It is for HP-Unix B.11.31. Requirement: 1. List the directories, having given pattern in the directories name, sorted by creation date. Example: Directories with name "pkg32*" or "pkg33*" 2. On the output of 1. list the directories by creation date as sort order, with creation date... (2 Replies)
Discussion started by: Siva SQL
2 Replies

3. Shell Programming and Scripting

How to list all the files, directories and sub-directories in the current path except one directory?

Can anyone come up with a unix command that lists all the files, directories and sub-directories in the current directory except a folder called log.? Thank you in advance. (7 Replies)
Discussion started by: Manjunath B
7 Replies

4. UNIX for Dummies Questions & Answers

List directories and sub directories recursively excluding files

Hi, Please help me, how to get all the direcotries, its sub directories and its sub directories recursively, need to exclude all the files in the process. I wanted to disply using a unix command all the directories recursively excluding files. I tried 'ls -FR' but that display files as... (3 Replies)
Discussion started by: pointers
3 Replies

5. Shell Programming and Scripting

How to list all the directories, sub directories in a mount along with size in ascending order?

Hi , I am very new to unix as well as shell scripting. I have to write a script for the following requirement. In a particular mount, have to list all the directories and sub directories along with size of the directory and sub directory in ascending order. Please help me in this regard and many... (4 Replies)
Discussion started by: nmakkena
4 Replies

6. UNIX for Dummies Questions & Answers

(really basic) List directories only?

I'm looking for a Linux equivalent to the DOS dir /ad that lists the directories ("folders" in Windows) in the current directory. I looked at the ls manpage, which says -d, --directory list directory entries instead of contents, and do not... (4 Replies)
Discussion started by: CRGreathouse
4 Replies

7. Shell Programming and Scripting

List of directories into a nested list

I have a list of directories like this a a/b a/c a/d a/d/e a/d/f a/d/g a/d/g/h a/i I would like to convert this list into another list, nested like this a{b{} c{} d{e{} f{} g{h{}}} i{}} Here is a pseudo algorithm for this Add a: (1 Reply)
Discussion started by: Ilja
1 Replies

8. UNIX for Dummies Questions & Answers

how to list directories only

I would like to know how to list directories only without a / at the end. I would like to only see them in my current dir. for example ls - d */ gives dir1/ dir2/ dir3/ dir4/ but is there a way to get only dir1 dir2 dir3 i need it to use them as inputs in a foreach loop... (3 Replies)
Discussion started by: yodadbl07
3 Replies

9. UNIX for Dummies Questions & Answers

How to list only directories?

How to list directories (not sub-directories) from a given path? (4 Replies)
Discussion started by: videsh77
4 Replies

10. UNIX for Dummies Questions & Answers

List directories

Is there any way to list only directories in particular file system? Malay (3 Replies)
Discussion started by: malaymaru
3 Replies
Login or Register to Ask a Question
DH_DI_NUMBERS(1)						     Debhelper							  DH_DI_NUMBERS(1)

NAME
dh_di_numbers - install numbered scripts into package build directories SYNOPSIS
dh_di_numbers [debhelper options] [dir [...] dest] DESCRIPTION
dh_di_numbers is a debhelper program that installs directories of numbered scripts into package build directories. Within each directory, there should be a "_numbers" file in which each line contains at least two space-separated fields. The first field in each line is a two-digit number, which will be prefixed to the entry name to provide ordering within the directory; the second is the entry name, which must correspond to a file or directory alongside the "_numbers" file; and the third field, if present, is another two- digit number which identifies another entry with the same entry name to which this entry should be a symlink. Any additional directory names specified as parameters will be installed in the package build directory of the first package dh_di_numbers is told to act on. By default, this is the first binary package in debian/control, but if you use -p, -i, or -a flags, it will be the first package specified by those flags. FILES
debian/package.di-numbers List the directories to install into each package and the directory they should be installed to. The format is a set of lines, where each line lists a directory or directories to install, and at the end of the line tells the directory they should be installed in. The name of the directories to install should be given relative to the current directory, while the installation directory is given relative to the package build directory. You may use wildcards in the names of the files to install (in v3 mode and above). OPTIONS
dir [...] dest Lists directories to install and where to install them to. The files will be installed into the first package dh_di_numbers acts on. SEE ALSO
debhelper(7) This program is a part of dh-di. AUTHOR
Colin Watson <cjwatson@debian.org> 3 2009-09-16 DH_DI_NUMBERS(1)