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