ls

From Wikipedia, the free encyclopedia
(Redirected from Dir (Unix))

Template:Short description Script error: No such module "about". Lua error in package.lua at line 80: module 'Module:Hatnote list' not found.

Page Module:Infobox/styles.css has no content.

ls
[[Programmer|Original authorTemplate:Pluralize from text]]coreutils: Richard Stallman and David MacKenzie
[[Programmer|DeveloperTemplate:Pluralize from text]]Various open-source and commercial developers
Template:Infobox software/simple
Written inC
Operating systemMultics, Unix, Unix-like, Plan 9, Inferno, MSX-DOS
TypeCommand
Licensecoreutils: GPLv3+
BusyBox: GPL-2.0-only
Toybox: 0BSD
Plan 9: MIT License
WebsiteScript error: No such module "WikidataIB".

Script error: No such module "Check for conflicting parameters".

ls is a shell command for listing files – including special files such as directories. Originally developed for Unix and later codified by POSIX and Single UNIX Specification, it is supported in many operating systems today, including Unix-like variants, Windows (via PowerShell and UnxUtils),[1] EFI,[2] and MSX-DOS (via MSX-DOS2 Tools).[3]

The numerical computing environments MATLAB and GNU Octave include an ls command with similar functionality.[4][5]

An ls command appeared in the first version of AT&T UNIX. The name inherited from Multics and is short for "list".[6][7][8] ls is part of the X/Open Portability Guide since issue 2 of 1987. It was inherited into the first version of POSIX.1 and the Single Unix Specification.[9]

In MS-DOS, OS/2, and Windows, the equivalent command is dir. Apple DOS for the Apple II uses CATALOG.

Behavior

When invoked with no path argument, ls lists the files of the working directory. Otherwise, it includes each specified file and each file of a specified directory.

Common options include:

  • -a Includes all files, even those starting with ., which on Unix-based systems are otherwise not included
  • -A Same as -a, but excludes the special entries . (working directory) and .. (parent of working directory)
  • -l Selects the long output format which extends the default output of the file name with additional information including type (- for regular file, d for directory, l for symbolic link, n for network file, s for socket, p for named pipe (FIFO), c for character special file, bfor block special file), permissions, hard link count, owning user and group, size, last-modified timestamp
  • -h Output sizes as so-called human readable by using units of KB, MB, GB instead of bytes. This option is not part of the POSIX standard, although implemented in several systems, e.g., GNU coreutils in 1997,[10] FreeBSD 4.5 in 2002,[11] and Solaris 9 in 2002.[12]
  • -R Include files of a directory tree, recursively
  • -t Sort the list by modification time (default sort is alphabetically)
  • -u Sort the list by last access time
  • -c Sort the list by last attribute (status) change time
  • -r Reverse the order, for example most recent time last
  • --full-time Show times down to the millisecond instead of just the minute
  • -1 One entry per line
  • -m Stream format; list items across the page, separated by commas.
  • -g Include group but not owner
  • -o Include owner but not group (when combined with -g both group and owner are suppressed)
  • -d Show information about a directory or symbolic link, rather than the contents of a directory or the link's target
  • -F Append a "/" to directory names, a "*" to executable files and a "@" to symbolic links

Example

The following example shows the long form output:

$ ls -l
drwxr--r--   1 fjones editors     4096 Mar  2 12:52  drafts
-rw-r--r--   3 fjones editors    30405 Mar  2 12:52  edition-32
-r-xr-xr-x   1 fjones bookkeepers 8460 Jan 16  2022  edit.sh

Each output line includes a file type letter ('-' for file, 'd' for directory), 9 letters representing permissions, the number of hard links, owning user, owning group, size, modification date, name. In the working directory, the owner fjones has a directory named drafts, a regular file named edition-32, and an executable named edit.sh which is "old", i.e. modified more than 6 months ago as indicated by the display of the year.

┌─────────── file (not a directory)
|┌─────────── read-write (no execution) permissions for the owner
|│  ┌───────── read-only permissions for the group
|│  │  ┌─────── read-only permissions for others
|│  │  │     ┌── 3 hard links
|│  │  │     │   ┌── owning user
|│  │  │     │   │     ┌── owning group
|│  │  │     │   │     │          ┌── file size in bytes
|│  │  │     │   │     │          │    ┌── last modified on
|│  │  │     │   │     │          │    │                ┌── filename
-rw-r--r--   3 fjones editors    30405 Mar  2 12:52  edition-32

Some implementations support color output to indicate metadata. GNU ls provides the --color option[13] which enables using a database to control colors maintained using dircolors. FreeBSD ls provides the -G option which enables using the termcap database[14] The following example shows possible color output:

-rw-r--r--    1 tsmitt nregion   26650 Dec 20 11:16 audio.ogg
brw-r--r--    1 tsmitt nregion      64 Jan 27 05:52 bd-block-device
crw-r--r--    1 tsmitt nregion     255 Jan 26 13:57 cd-character-device
-rw-r--r--    1 tsmitt nregion     290 Jan 26 14:08 image.png
drwxrwxr-x    2 tsmitt nregion      48 Jan 26 11:28 di-directory
-rwxrwxr-x    1 tsmitt nregion      29 Jan 26 14:03 ex-executable
-rw-r--r--    1 tsmitt nregion       0 Dec 20 09:39 fi-regular-file
lrwxrwxrwx    1 tsmitt nregion       3 Jan 26 11:44 ln-soft-link -> dir
lrwxrwxrwx    1 tsmitt nregion      15 Dec 20 10:57 or-orphan-link -> mi-missing-link
drwxr-xrwx    2 tsmitt nregion    4096 Dec 20 10:58 ow-other-writeable-dir
prw-r--r--    1 tsmitt nregion       0 Jan 26 11:50 pi-pipe
-rwxr-sr-x    1 tsmitt nregion       0 Dec 20 11:05 sg-setgid
srw-rw-rw-    1 tsmitt nregion       0 Jan 26 12:00 so-socket
drwxr-xr-t    2 tsmitt nregion    4096 Dec 20 10:58 st-sticky-dir
-rwsr-xr-x    1 tsmitt nregion       0 Dec 20 11:09 su-setuid
-rw-r--r--    1 tsmitt nregion   10240 Dec 20 11:12 compressed.gz
drwxrwxrwt    2 tsmitt nregion    4096 Dec 20 11:10 tw-sticky-other-writeable-dir

See also

References

Page Template:Reflist/styles.css has no content.

  1. ^ Page Module:Citation/CS1/styles.css has no content."Native Win32 ports of some GNU utilities". unxutils.sourceforge.net. Archived from the original on 2006-02-09. Retrieved 2025-08-09.
  2. ^ Page Module:Citation/CS1/styles.css has no content."EFI Shells and Scripting". Intel. Archived from the original on September 27, 2013. Retrieved 2013-09-25.
  3. ^ Page Module:Citation/CS1/styles.css has no content."MSX-DOS2 Tools User's Manual - MSX-DOS2 TOOLS ユーザーズマニュアル". April 1, 1993 – via Internet Archive.
  4. ^ Page Module:Citation/CS1/styles.css has no content."List folder contents - MATLAB ls". Archived from the original on 2012-10-09. Retrieved 2019-04-06.
  5. ^ Page Module:Citation/CS1/styles.css has no content."Function Reference: Ls". Octave Forge. Archived from the original on 2019-04-06. Retrieved 2019-04-06.
  6. ^ Page Module:Citation/CS1/styles.css has no content."Multics manual page for ls or list command". 14 February 1985.
  7. ^ Page Module:Citation/CS1/styles.css has no content.Fischer, Eric. "A Brief History of the 'ls' command". The Linux Documentation Project. Archived from the original on 2023-01-02. Retrieved 2022-12-09.
  8. ^ Page Module:Citation/CS1/styles.css has no content."Multics programmer's manual - Commands and active functions" (PDF). p. 397.
  9. ^ Template:Man
  10. ^ Page Module:Citation/CS1/styles.css has no content."(decode_switches): -h and -H override output units". coreutils.git. 1997-12-31. Archived from the original on 2019-12-10. Retrieved 2014-11-05.
  11. ^ Page Module:Citation/CS1/styles.css has no content."[base] Log of /stable/10/bin/ls/ls.c". 2001-12-28. Archived from the original on 2015-09-21. Retrieved 2014-11-05.
  12. ^ Page Module:Citation/CS1/styles.css has no content.What's New in the Solaris 9 Operating Environment, Sun Microsystems, 2002, archived from the original on 2015-03-18, retrieved 2014-11-05
  13. ^ Page Module:Citation/CS1/styles.css has no content."General output formatting (GNU Coreutils 9.1)". www.gnu.org. Archived from the original on 2023-01-07. Retrieved 2023-01-07.
  14. ^ Page Module:Citation/CS1/styles.css has no content."FreeBSD Man Pages — ls". Archived from the original on September 22, 2013. Retrieved June 23, 2013.

Page Module:Side box/styles.css has no content.Page Template:Sister project/styles.css has no content.

Lua error in package.lua at line 80: module 'Module:Navbox/configuration' not found. Template:Plan 9 commands Template:Core Utilities commands