vote up -1 vote down star

How can you look at the folder in terminal without opening the folder so that you see files in the folder?

flag

can you give some more details? – Milhous Mar 14 at 3:06

closed as no longer relevant by Rich B, TheTXI, Can Berk Güder, George Stocker, Masi Mar 16 at 15:56

2 Answers

vote up 3 vote down check

My unix is rusty but how about?:

$ ls <path_to_foldername>

For example:

$ ls /etc
$ ls myfolder

HTH
Kev

link|flag
You're welcome :) – Kev Mar 14 at 3:22
vote up 4 vote down

BTW: The "folder" metaphor does not drive the terminology in unix: it's called a "directory".

I presume you want to list the directory attributes without seeing the contents, yes?

Use

ls -ld path/to/directory

The command "ls" is to list, the "l" option specifies the long form with permissions, and the "d" option means treat directories as regular files (rather than giving the the usual special treatment).

The path you use can be relative as in "mail" or "../another/directory", or it can be fully specified as in "/usr/local/src/program/". You are aslo free to specify more than one path (either explicitly or using globs (wildcards)).

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.