xref: /original-bsd/bin/ls/ls.1 (revision 0aabd36e)
Copyright (c) 1980 Regents of the University of California.
All rights reserved. The Berkeley software License Agreement
specifies the terms and conditions for redistribution.

@(#)ls.1 6.10 (Berkeley) 08/22/89

LS 1 ""
C
NAME
ls - list contents of directory
SYNOPSIS
ls [ -1AaCcdFgikLlqRrstu ] [ file ... ]

DESCRIPTION
For each directory argument, ls lists the contents of the directory; for each file argument, ls repeats its name and any other information requested. By default, the output is sorted alphabetically. When no argument is given, the current directory is listed. When several arguments are given, the arguments are first sorted appropriately, but file arguments are processed before directories and their contents.

The options are as follows:

-1 force one entry per line output format; this is the default when output is not to a terminal.

-A List all entries except for ``.'' and ``..''. Always set for the super-user.

-a List all entries; in the absence of this option, entries whose names begin with a period ( . ) are not listed.

-C force multi-column output; this is the default when output is to a terminal.

-c Use time when file status was last changed for sorting or printing.

-d If argument is a directory, list only its name; often used with -l to get the status of a directory.

-F cause directories to be marked with a trailing `/', sockets with a trailing `=', symbolic links with a trailing `@', and executable files with a trailing `*'.

-g Include the group ownership of the file in a long output.

-i For each file, print the i-number in the first column of the report.

-k Modifies the -s option, causing the sizes to be reported in kilobytes.

-L If argument is a symbolic link, list the file or directory the link references rather than the link itself.

-l List in long format, giving mode, number of links, owner, size in bytes, and time of last modification for each file. (See below.) If the file is a special file the size field will instead contain the major and minor device numbers. If the file is a symbolic link the pathname of the linked-to file is printed preceded by ``->''.

-q force printing of non-graphic characters in file names as the character `?'; this is the default when output is to a terminal.

-R recursively list subdirectories encountered.

-r Reverse the order of sort to get reverse alphabetic or oldest first as appropriate.

-s Display the sizes of files and directories in 512-byte blocks.

-t Sort by time modified (latest first) instead of by name.

-u Use time of last access instead of last modification for sorting (with the -t option) and/or printing (with the -l option).

The -1 , -C , and -l options all override each other; the last one specified determines the format used.

The -c , and -u options override each other; the last one specified determines the file time used.

The mode printed under the -l option contains 11 characters which are interpreted as follows: the first character is

3 d if the entry is a directory;

.ns

3 b if the entry is a block-type special file;

.ns

3 c if the entry is a character-type special file;

.ns

3 l if the entry is a symbolic link;

.ns

s if the entry is a socket, or

.ns

3 - if the entry is a plain file.

The next 9 characters are interpreted as three sets of three bits each. The first set refers to owner permissions; the next refers to permissions to others in the same user-group; and the last to all others. Within each set the three characters indicate permission respectively to read, to write, or to execute the file as a program. For a directory, `execute' permission is interpreted to mean permission to search the directory. The permissions are indicated as follows:

3 r if the file is readable;

.ns

3 w if the file is writable;

.ns

3 x if the file is executable;

.ns

3 - if the indicated permission is not granted.

The group-execute permission character is given as s if the file has the set-group-id bit set; likewise the user-execute permission character is given as s if the file has the set-user-id bit set. These are given as S (capitalized) if the corresponding execute permission is NOT set.

The last character of the mode (normally `x' or `-') is t if the 1000 bit of the mode is on. See chmod (1) for the meaning of this mode. This is given as T (capitalized) if the corresponding execute permission is NOT set.

When the sizes of the files in a directory are listed, a total count of blocks, including indirect blocks is printed.

FILES
/etc/passwd to get user id's for `ls -l'.

/etc/group to get group id's for `ls -g'.

BUGS
The option setting based on whether the output is a teletype is undesirable as ``ls -s'' is much different than ``ls -s | lpr''. On the other hand, not doing this setting would make old shell scripts which used ls almost certain losers.