Forrest logo
back to the ls tool

ls:tldr:de51c

ls: Long format list sorted by size (descending).
$ ls -lS
try on your machine

The command "ls -lS" is used in Linux and Unix systems to list files and directories in a specific directory.

Here's a breakdown of the command:

  • "ls" stands for "list," which is a command to list files and directories.
  • "-l" is a flag that stands for "long format." It provides detailed information about each file and directory, including permissions, ownership, file size, and modification date.
  • "-S" is another flag that stands for "sort by size." This flag instructs the command to sort the listing by file size in descending order. Files with larger sizes will be displayed before files with smaller sizes.

By combining these flags, "ls -lS" will list the files and directories in the current directory in long format and sort them by their size, with the largest files appearing first.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the ls tool