When you enter the ls command, you'll
get a listing of the files and subdirectories contained in your
working directory.
The syntax is:
ls option(s) directory-and-filename(s)
If you've just logged in for the first time, entering
ls without any
arguments may seem to do nothing.
This isn't surprising because you haven't made any files in your
working directory.
If you have no files, nothing is displayed; you'll simply get a new
shell prompt:
$ ls
$
But if you've already made some files or directories in your account,
those names are displayed.
The output depends on what's in your directory.
The screen should look something like this:
$ ls
ch1 ch10 ch2 ch3 intro
$
(Some systems display filenames in a single column.
If yours does, you can make a multicolumn display with the
-C [uppercase "C"] option or the
-x option.)
ls has a lot of options that change the
information and display format.
The permissions show who can read,
write, or execute the file or directory; we explain what that means
in a moment.
The permissions have ten characters.
The first character shows the file type (d for directory
or - for a plain file).
The other characters come in groups of three.
The first group, characters 2-4, show the permissions for the
file's owner, which is yourself if you created the file.
The second group, characters 5-7, show permissions for other
members of the file's group.
The third group, characters 8-10, show permissions for all other
users.
For example, the permissions for .profile are
-rw-r--r--, so it's a plain file.
The owner, john, has both read and write permissions.
Other users who belong to the file's group doc,
as well as all other users of the system, can only read the file; they don't
have write permission, so they can't change what's in the file.
No one has execute (x) permission, which should only
be used for executable files (files that hold programs).
In the case of directories, x means the
permission to access the directory--for example, to run a command
that reads a file there or to use a subdirectory.
Notice that the two directories shown in the example are executable
(accessible) by john, by users in the
doc group, and by everyone else on the system.
A directory with w (write) permission allows
deleting, renaming, or adding files within the directory.
Read (r) permission allows listing the directory
with ls.
If you need to know only which files are directories and which
are executable files, you can use the -F
option.