theshell.ch/site/pages/fs/ls.html
bevilj 157d82eca6 home: add video
git-svn-id: svn+ssh://atelier.inf.usi.ch/home/bevilj/group-1@177 a672b425-5310-4d7a-af5c-997e18724b81
2018-11-14 13:28:12 +00:00

50 lines
2.5 KiB
HTML

---
layout: page
category-page: fs
category-title: FileSystem
tags: list file
author: Mirko Ponzio
title: ls
---
<p>
The command <code>ls</code> stands for "LiSt"<br>
In computing, ls is a command to list computer files in Unix and Unix-like operating systems.
ls is specified by POSIX and the Single UNIX Specification.<br>
When invoked without any arguments, ls lists the files in the current working directory.<br>
The command is also available in the EFI shell. In other environments, such as DOS and Microsoft
Windows, similar functionality is provided by the dir command.<br>
Unix and Unix-like operating systems maintain the idea of a current working directory,
that is, where one is currently positioned in the hierarchy of directories.<br>
When invoked without any arguments, ls lists the files in the current working directory.
If another directory is specified, then ls will list the files there, and in fact the user may
specify any list of files and directories to be listed.<br>
Files whose names start with "." are not listed, unless the -a flag is specified,
the -A flag is specified, or the files are specified explicitly.<br>
Without options, ls displays files in a bare format. This bare format however makes
it difficult to establish the type, permissions, and size of the files.<br><br>
<h3>Flags</h3>
The most common options to reveal this information or change the list of files are:
<ul>
<li> -l long format, displaying Unix file types, permissions, number of hard links,
owner, group, size, last-modified date and filename </li>
<li> -f do not sort. Useful for directories containing large numbers of files. </li>
<li> -F appends a character revealing the nature of a file, for example, * for an executable,
or / for a directory. Regular files have no suffix.</li>
<li> -a lists all files in the given directory, including those whose names start with "."
(which are hidden files in Unix). By default, these files are excluded from the list.</li>
<li> -R recursively lists subdirectories. The command ls -R / would therefore list all files. </li>
<li> -d shows information about a symbolic link or directory, rather than about the link's
target or listing the contents of a directory. </li>
<li> -t sort the list of files by modification time. </li>
<li> -h print sizes in human readable format. (e.g., 1K, 234M, 2G, etc.) This option is not
part of the POSIX standard, although implemented in several systems, e.g.,
GNU coreutils in 1997, FreeBSD 4.5 in 2002, and Solaris 9 in 2002. </li>
</ul>
</p>