LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

lt

lists directory contents as a tree

TLDR

List files as tree
$ lt
copy
List specific directory
$ lt [directory/]
copy
Show hidden files
$ lt -a
copy
Limit depth
$ lt -L [2]
copy
Show file details
$ lt -l
copy
Color output
$ lt --color
copy

SYNOPSIS

lt [options] [path]

DESCRIPTION

lt lists directory contents in a tree format. It is typically a shell alias rather than a standalone command, commonly configured as an alias for lsd --tree, exa --tree, or eza --tree.The exact behavior and available options depend on the underlying command. Run type lt or alias lt to see the actual definition on your system.

PARAMETERS

PATH

Directory to list.
-a
Show hidden files.
-L DEPTH
Maximum depth.
-l
Long listing format.
--color
Enable color output.
--help
Display help information.

CAVEATS

Not a standard command. Behavior and available flags depend entirely on how the alias is configured. Options shown here correspond to common implementations like lsd or eza.

HISTORY

lt is commonly configured as a shell alias for tree-style directory listing using modern ls alternatives like lsd, exa, or eza.

SEE ALSO

tree(1), lsd(1), exa(1), eza(1), ls(1)

Copied to clipboard
Kai