]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - bin/ls/ls.1
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / bin / ls / ls.1
1 .\"-
2 .\" Copyright (c) 1980, 1990, 1991, 1993, 1994
3 .\"     The Regents of the University of California.  All rights reserved.
4 .\"
5 .\" This code is derived from software contributed to Berkeley by
6 .\" the Institute of Electrical and Electronics Engineers, Inc.
7 .\"
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
10 .\" are met:
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\"    notice, this list of conditions and the following disclaimer.
13 .\" 2. Redistributions in binary form must reproduce the above copyright
14 .\"    notice, this list of conditions and the following disclaimer in the
15 .\"    documentation and/or other materials provided with the distribution.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\"    may be used to endorse or promote products derived from this software
18 .\"    without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\"     @(#)ls.1        8.7 (Berkeley) 7/29/94
33 .\" $FreeBSD$
34 .\"
35 .Dd November 8, 2012
36 .Dt LS 1
37 .Os
38 .Sh NAME
39 .Nm ls
40 .Nd list directory contents
41 .Sh SYNOPSIS
42 .Nm
43 .Op Fl ABCFGHILPRSTUWZabcdfghiklmnopqrstuwxy1,
44 .Op Fl D Ar format
45 .Op Ar
46 .Sh DESCRIPTION
47 For each operand that names a
48 .Ar file
49 of a type other than
50 directory,
51 .Nm
52 displays its name as well as any requested,
53 associated information.
54 For each operand that names a
55 .Ar file
56 of type directory,
57 .Nm
58 displays the names of files contained
59 within that directory, as well as any requested, associated
60 information.
61 .Pp
62 If no operands are given, the contents of the current
63 directory are displayed.
64 If more than one operand is given,
65 non-directory operands are displayed first; directory
66 and non-directory operands are sorted separately and in
67 lexicographical order.
68 .Pp
69 The following options are available:
70 .Bl -tag -width indent
71 .It Fl A
72 Include directory entries whose names begin with a
73 dot
74 .Pq Sq Pa \&.
75 except for
76 .Pa \&.
77 and
78 .Pa .. .
79 Automatically set for the super-user unless
80 .Fl I
81 is specified.
82 .It Fl B
83 Force printing of non-printable characters (as defined by
84 .Xr ctype 3
85 and current locale settings) in file names as
86 .Li \e Ns Va xxx ,
87 where
88 .Va xxx
89 is the numeric value of the character in octal.
90 .It Fl C
91 Force multi-column output; this is the default when output is to a terminal.
92 .It Fl D Ar format
93 When printing in the long
94 .Pq Fl l
95 format, use
96 .Ar format
97 to format the date and time output.
98 The argument
99 .Ar format
100 is a string used by
101 .Xr strftime 3 .
102 Depending on the choice of format string, this may result in a
103 different number of columns in the output.
104 This option overrides the
105 .Fl T
106 option.
107 .It Fl F
108 Display a slash
109 .Pq Ql /
110 immediately after each pathname that is a directory,
111 an asterisk
112 .Pq Ql *
113 after each that is executable,
114 an at sign
115 .Pq Ql @
116 after each symbolic link,
117 an equals sign
118 .Pq Ql =
119 after each socket,
120 a percent sign
121 .Pq Ql %
122 after each whiteout,
123 and a vertical bar
124 .Pq Ql \&|
125 after each that is a
126 .Tn FIFO .
127 .It Fl G
128 Enable colorized output.
129 This option is equivalent to defining
130 .Ev CLICOLOR
131 in the environment.
132 (See below.)
133 This functionality can be compiled out by removing the definition of
134 .Ev COLORLS .
135 .It Fl H
136 Symbolic links on the command line are followed.
137 This option is assumed if
138 none of the
139 .Fl F , d ,
140 or
141 .Fl l
142 options are specified.
143 .It Fl I
144 Prevent
145 .Fl A
146 from being automatically set for the super-user.
147 .It Fl L
148 If argument is a symbolic link, list the file or directory the link references
149 rather than the link itself.
150 This option cancels the
151 .Fl P
152 option.
153 .It Fl P
154 If argument is a symbolic link, list the link itself rather than the
155 object the link references.
156 This option cancels the
157 .Fl H
158 and
159 .Fl L
160 options.
161 .It Fl R
162 Recursively list subdirectories encountered.
163 .It Fl S
164 Sort by size (largest file first) before sorting the operands in
165 lexicographical order.
166 .It Fl T
167 When printing in the long
168 .Pq Fl l
169 format, display complete time information for the file, including
170 month, day, hour, minute, second, and year.
171 The
172 .Fl D
173 option gives even more control over the output format.
174 .It Fl U
175 Use time when file was created for sorting or printing.
176 .It Fl W
177 Display whiteouts when scanning directories.
178 .It Fl Z
179 Display each file's MAC label; see
180 .Xr maclabel 7 .
181 .It Fl a
182 Include directory entries whose names begin with a
183 dot
184 .Pq Sq Pa \&. .
185 .It Fl b
186 As
187 .Fl B ,
188 but use
189 .Tn C
190 escape codes whenever possible.
191 .It Fl c
192 Use time when file status was last changed for sorting or printing.
193 .It Fl d
194 Directories are listed as plain files (not searched recursively).
195 .It Fl f
196 Output is not sorted.
197 .It Fl g
198 This option is deprecated and is only available for compatibility
199 with
200 .Bx 4.3 ;
201 it was used to display the group name in the long
202 .Pq Fl l
203 format output.
204 .It Fl h
205 When used with the
206 .Fl l
207 option, use unit suffixes: Byte, Kilobyte, Megabyte, Gigabyte, Terabyte
208 and Petabyte in order to reduce the number of digits to four or fewer
209 using base 2 for sizes.
210 .It Fl i
211 For each file, print the file's file serial number (inode number).
212 .It Fl k
213 This has the same effect as setting environment variable
214 .Ev BLOCKSIZE
215 to 1024, except that it also nullifies any
216 .Fl h
217 options to its left.
218 .It Fl l
219 (The lowercase letter
220 .Dq ell . )
221 List files in the long format, as described in the
222 .Sx The Long Format
223 subsection below.
224 .It Fl m
225 Stream output format; list files across the page, separated by commas.
226 .It Fl n
227 Display user and group IDs numerically rather than converting to a user
228 or group name in a long
229 .Pq Fl l
230 output.
231 .It Fl o
232 Include the file flags in a long
233 .Pq Fl l
234 output.
235 .It Fl p
236 Write a slash
237 .Pq Ql /
238 after each filename if that file is a directory.
239 .It Fl q
240 Force printing of non-graphic characters in file names as
241 the character
242 .Ql \&? ;
243 this is the default when output is to a terminal.
244 .It Fl r
245 Reverse the order of the sort.
246 .It Fl s
247 Display the number of blocks used in the file system by each file.
248 Block sizes and directory totals are handled as described in
249 .Sx The Long Format
250 subsection below, except (if the long format is not also requested)
251 the directory totals are not output when the output is in a
252 single column, even if multi-column output is requested.
253 .It Fl t
254 Sort by descending time modified (most recently modified first).  If two files
255 have the same modification timestamp, sort their names in ascending
256 lexicographical order.
257 The
258 .Fl r
259 option reverses both of these sort orders.
260 .Pp
261 Note that these sort orders are contradictory: the time sequence is in
262 descending order, the lexicographical sort is in ascending order.
263 This behavior is mandated by
264 .St -p1003.2 .
265 This feature can cause problems listing files stored with sequential names on
266 FAT file systems, such as from digital cameras, where it is possible to have
267 more than one image with the same timestamp.
268 In such a case, the photos cannot be listed in the sequence in which
269 they were taken.
270 To ensure the same sort order for time and for lexicographical sorting, set the
271 environment variable
272 .Ev LS_SAMESORT
273 or use the
274 .Fl y
275 option.
276 This causes
277 .Nm
278 to reverse the lexicographal sort order when sorting files with the
279 same modification timestamp.
280 .It Fl u
281 Use time of last access,
282 instead of time of last modification
283 of the file for sorting
284 .Pq Fl t
285 or printing
286 .Pq Fl l .
287 .It Fl w
288 Force raw printing of non-printable characters.
289 This is the default
290 when output is not to a terminal.
291 .It Fl x
292 The same as
293 .Fl C ,
294 except that the multi-column output is produced with entries sorted
295 across, rather than down, the columns.
296 .It Fl y
297 When the
298 .Fl t
299 option is set, sort the alphabetical output in the same order as the time output.
300 This has the same effect as setting
301 .Ev LS_SAMESORT .
302 See the description of the
303 .Fl t
304 option for more details.
305 .It Fl 1
306 (The numeric digit
307 .Dq one . )
308 Force output to be
309 one entry per line.
310 This is the default when
311 output is not to a terminal.
312 .It Fl ,
313 (Comma) When the
314 .Fl l
315 option is set, print file sizes grouped and separated by thousands using the
316 non-monetary separator returned by
317 .Xr localeconv 3 ,
318 typically a comma or period.
319 If no locale is set, or the locale does not have a non-monetary separator, this
320 option has no effect.
321 .El
322 .Pp
323 The
324 .Fl 1 , C , x ,
325 and
326 .Fl l
327 options all override each other; the last one specified determines
328 the format used.
329 .Pp
330 The
331 .Fl c , u ,
332 and
333 .Fl U
334 options all override each other; the last one specified determines
335 the file time used.
336 .Pp
337 The
338 .Fl S
339 and
340 .Fl t
341 options override each other; the last one specified determines
342 the sort order used.
343 .Pp
344 The
345 .Fl B , b , w ,
346 and
347 .Fl q
348 options all override each other; the last one specified determines
349 the format used for non-printable characters.
350 .Pp
351 The
352 .Fl H , L
353 and
354 .Fl P
355 options all override each other (either partially or fully); they
356 are applied in the order specified.
357 .Pp
358 By default,
359 .Nm
360 lists one entry per line to standard
361 output; the exceptions are to terminals or when the
362 .Fl C
363 or
364 .Fl x
365 options are specified.
366 .Pp
367 File information is displayed with one or more
368 .Ao blank Ac Ns s
369 separating the information associated with the
370 .Fl i , s ,
371 and
372 .Fl l
373 options.
374 .Ss The Long Format
375 If the
376 .Fl l
377 option is given, the following information
378 is displayed for each file:
379 file mode,
380 number of links, owner name, group name,
381 MAC label,
382 number of bytes in the file, abbreviated
383 month, day-of-month file was last modified,
384 hour file last modified, minute file last
385 modified, and the pathname.
386 .Pp
387 If the modification time of the file is more than 6 months
388 in the past or future, and the
389 .Fl D
390 or
391 .Fl T
392 are not specified,
393 then the year of the last modification
394 is displayed in place of the hour and minute fields.
395 .Pp
396 If the owner or group names are not a known user or group name,
397 or the
398 .Fl n
399 option is given,
400 the numeric ID's are displayed.
401 .Pp
402 If the file is a character special or block special file,
403 the device number for the file is displayed in the size field.
404 If the file is a symbolic link the pathname of the
405 linked-to file is preceded by
406 .Dq Li -> .
407 .Pp
408 The listing of a directory's contents is preceded
409 by a labeled total number of blocks used in the file system by the files
410 which are listed as the directory's contents
411 (which may or may not include
412 .Pa \&.
413 and
414 .Pa ..
415 and other files which start with a dot, depending on other options).
416 .Pp
417 The default block size is 512 bytes.
418 The block size may be set with option
419 .Fl k
420 or environment variable
421 .Ev BLOCKSIZE .
422 Numbers of blocks in the output will have been rounded up so the
423 numbers of bytes is at least as many as used by the corresponding
424 file system blocks (which might have a different size).
425 .Pp
426 The file mode printed under the
427 .Fl l
428 option consists of the
429 entry type and the permissions.
430 The entry type character describes the type of file, as
431 follows:
432 .Pp
433 .Bl -tag -width 4n -offset indent -compact
434 .It Sy \-
435 Regular file.
436 .It Sy b
437 Block special file.
438 .It Sy c
439 Character special file.
440 .It Sy d
441 Directory.
442 .It Sy l
443 Symbolic link.
444 .It Sy p
445 .Tn FIFO .
446 .It Sy s
447 Socket.
448 .It Sy w
449 Whiteout.
450 .El
451 .Pp
452 The next three fields
453 are three characters each:
454 owner permissions,
455 group permissions, and
456 other permissions.
457 Each field has three character positions:
458 .Bl -enum -offset indent
459 .It
460 If
461 .Sy r ,
462 the file is readable; if
463 .Sy \- ,
464 it is not readable.
465 .It
466 If
467 .Sy w ,
468 the file is writable; if
469 .Sy \- ,
470 it is not writable.
471 .It
472 The first of the following that applies:
473 .Bl -tag -width 4n -offset indent
474 .It Sy S
475 If in the owner permissions, the file is not executable and
476 set-user-ID mode is set.
477 If in the group permissions, the file is not executable
478 and set-group-ID mode is set.
479 .It Sy s
480 If in the owner permissions, the file is executable
481 and set-user-ID mode is set.
482 If in the group permissions, the file is executable
483 and setgroup-ID mode is set.
484 .It Sy x
485 The file is executable or the directory is
486 searchable.
487 .It Sy \-
488 The file is neither readable, writable, executable,
489 nor set-user-ID nor set-group-ID mode, nor sticky.
490 (See below.)
491 .El
492 .Pp
493 These next two apply only to the third character in the last group
494 (other permissions).
495 .Bl -tag -width 4n -offset indent
496 .It Sy T
497 The sticky bit is set
498 (mode
499 .Li 1000 ) ,
500 but not execute or search permission.
501 (See
502 .Xr chmod 1
503 or
504 .Xr sticky 7 . )
505 .It Sy t
506 The sticky bit is set (mode
507 .Li 1000 ) ,
508 and is searchable or executable.
509 (See
510 .Xr chmod 1
511 or
512 .Xr sticky 7 . )
513 .El
514 .El
515 .Pp
516 The next field contains a
517 plus
518 .Pq Ql +
519 character if the file has an ACL, or a
520 space
521 .Pq Ql " "
522 if it does not.
523 The
524 .Nm
525 utility does not show the actual ACL;
526 use
527 .Xr getfacl 1
528 to do this.
529 .Sh ENVIRONMENT
530 The following environment variables affect the execution of
531 .Nm :
532 .Bl -tag -width ".Ev CLICOLOR_FORCE"
533 .It Ev BLOCKSIZE
534 If this is set, its value, rounded up to 512 or down to a
535 multiple of 512, will be used as the block size in bytes by the
536 .Fl l
537 and
538 .Fl s
539 options.
540 See
541 .Sx The Long Format
542 subsection for more information.
543 .It Ev CLICOLOR
544 Use
545 .Tn ANSI
546 color sequences to distinguish file types.
547 See
548 .Ev LSCOLORS
549 below.
550 In addition to the file types mentioned in the
551 .Fl F
552 option some extra attributes (setuid bit set, etc.) are also displayed.
553 The colorization is dependent on a terminal type with the proper
554 .Xr termcap 5
555 capabilities.
556 The default
557 .Dq Li cons25
558 console has the proper capabilities,
559 but to display the colors in an
560 .Xr xterm 1 ,
561 for example,
562 the
563 .Ev TERM
564 variable must be set to
565 .Dq Li xterm-color .
566 Other terminal types may require similar adjustments.
567 Colorization
568 is silently disabled if the output is not directed to a terminal
569 unless the
570 .Ev CLICOLOR_FORCE
571 variable is defined.
572 .It Ev CLICOLOR_FORCE
573 Color sequences are normally disabled if the output is not directed to
574 a terminal.
575 This can be overridden by setting this variable.
576 The
577 .Ev TERM
578 variable still needs to reference a color capable terminal however
579 otherwise it is not possible to determine which color sequences to
580 use.
581 .It Ev COLUMNS
582 If this variable contains a string representing a
583 decimal integer, it is used as the
584 column position width for displaying
585 multiple-text-column output.
586 The
587 .Nm
588 utility calculates how
589 many pathname text columns to display
590 based on the width provided.
591 (See
592 .Fl C
593 and
594 .Fl x . )
595 .It Ev LANG
596 The locale to use when determining the order of day and month in the long
597 .Fl l
598 format output.
599 See
600 .Xr environ 7
601 for more information.
602 .It Ev LSCOLORS
603 The value of this variable describes what color to use for which
604 attribute when colors are enabled with
605 .Ev CLICOLOR .
606 This string is a concatenation of pairs of the format
607 .Ar f Ns Ar b ,
608 where
609 .Ar f
610 is the foreground color and
611 .Ar b
612 is the background color.
613 .Pp
614 The color designators are as follows:
615 .Pp
616 .Bl -tag -width 4n -offset indent -compact
617 .It Sy a
618 black
619 .It Sy b
620 red
621 .It Sy c
622 green
623 .It Sy d
624 brown
625 .It Sy e
626 blue
627 .It Sy f
628 magenta
629 .It Sy g
630 cyan
631 .It Sy h
632 light grey
633 .It Sy A
634 bold black, usually shows up as dark grey
635 .It Sy B
636 bold red
637 .It Sy C
638 bold green
639 .It Sy D
640 bold brown, usually shows up as yellow
641 .It Sy E
642 bold blue
643 .It Sy F
644 bold magenta
645 .It Sy G
646 bold cyan
647 .It Sy H
648 bold light grey; looks like bright white
649 .It Sy x
650 default foreground or background
651 .El
652 .Pp
653 Note that the above are standard
654 .Tn ANSI
655 colors.
656 The actual display may differ
657 depending on the color capabilities of the terminal in use.
658 .Pp
659 The order of the attributes are as follows:
660 .Pp
661 .Bl -enum -offset indent -compact
662 .It
663 directory
664 .It
665 symbolic link
666 .It
667 socket
668 .It
669 pipe
670 .It
671 executable
672 .It
673 block special
674 .It
675 character special
676 .It
677 executable with setuid bit set
678 .It
679 executable with setgid bit set
680 .It
681 directory writable to others, with sticky bit
682 .It
683 directory writable to others, without sticky bit
684 .El
685 .Pp
686 The default is
687 .Qq "exfxcxdxbxegedabagacad" ,
688 i.e., blue foreground and
689 default background for regular directories, black foreground and red
690 background for setuid executables, etc.
691 .It Ev LS_COLWIDTHS
692 If this variable is set, it is considered to be a
693 colon-delimited list of minimum column widths.
694 Unreasonable
695 and insufficient widths are ignored (thus zero signifies
696 a dynamically sized column).
697 Not all columns have changeable widths.
698 The fields are,
699 in order: inode, block count, number of links, user name,
700 group name, flags, file size, file name.
701 .It Ev LS_SAMESORT
702 If this variable is set, the
703 .Fl t
704 option sorts the names of files with the same modification timestamp in the same
705 sense as the time sort.
706 See the description of the
707 .Fl t
708 option for more details.
709 .It Ev TERM
710 The
711 .Ev CLICOLOR
712 functionality depends on a terminal type with color capabilities.
713 .It Ev TZ
714 The timezone to use when displaying dates.
715 See
716 .Xr environ 7
717 for more information.
718 .El
719 .Sh EXIT STATUS
720 .Ex -std
721 .Sh COMPATIBILITY
722 The group field is now automatically included in the long listing for
723 files in order to be compatible with the
724 .St -p1003.2
725 specification.
726 .Sh SEE ALSO
727 .Xr chflags 1 ,
728 .Xr chmod 1 ,
729 .Xr getfacl 1 ,
730 .Xr sort 1 ,
731 .Xr xterm 1 ,
732 .Xr localeconv 3 ,
733 .Xr strftime 3 ,
734 .Xr strmode 3 ,
735 .Xr termcap 5 ,
736 .Xr maclabel 7 ,
737 .Xr sticky 7 ,
738 .Xr symlink 7 ,
739 .Xr getfmac 8
740 .Sh STANDARDS
741 With the exception of options
742 .Fl I , g , n
743 and
744 .Fl o ,
745 the
746 .Nm
747 utility conforms to
748 .St -p1003.1-2001 .
749 .Pp
750 The ACL support is compatible with
751 .Tn IEEE
752 Std\~1003.2c
753 .Pq Dq Tn POSIX Ns .2c
754 Draft\~17
755 (withdrawn).
756 .Sh HISTORY
757 An
758 .Nm
759 command appeared in
760 .At v1 .
761 .Sh BUGS
762 To maintain backward compatibility, the relationships between the many
763 options are quite complex.
764 .Pp
765 The exception mentioned in the
766 .Fl s
767 option description might be a feature that was
768 based on the fact that single-column output
769 usually goes to something other than a terminal.
770 It is debatable whether this is a design bug.
771 .Pp
772 .St -p1003.2
773 mandates opposite sort orders for files with the same timestamp when
774 sorting with the
775 .Fl t
776 option.