Using ls Command in Linux

ls is one of the simplest and most frequently used commands is Linux. Learn to use it effectively in this tutorial.
Warp Terminal

In my opinion, the ls command is the most used Linux command as it is often used to verify the outcome of the previous operation by listing the directory contents.

The ls command stands for a list; all it does is list the contents of the specified directory.

In this tutorial, I'll walk you through multiple examples of using the ls command.

I will also share some practice questions to test the learnings.

How to use the ls command

To use the ls command, you'd have to follow the simple command syntax:

ls [OPTIONS] Targeted_Directory

Here,

  • [OPTIONS]: It is used to tweak the default behavior of the ls command.
  • Targeted_Directory: This is where you provide the directory name or the absolute path to the directory.

You might wonder what happens when you use the ls command without any options. And to answer that, I used the ls command in my current working directory:

ls 
use the ls command to list the contents of the working directory

As you can see, it listed all the directories and files available in the current working directory. But you can do a lot more than just getting the names and files present in the current working directory.

Let me show you how.

1. List files and directories with ownership

One of the primary use of the ls command to find the permissions and ownership of a particular file or a directory.

For that you'd have to use the -l option (also called long listing) with the ls command:

ls -l

Once you do that, you can expect similar output:

sagar@itsFOSS:~$ ls -lh
-rwxrw-r-- 1 sagar sagar 666M Dec 10 18:16 Fedora.iso

Notice how I used an addition -h option? I'll discuss it in the next section.

For now, if the output looks too complicated, then let me simplify things for you:

explain read write permissions with file ownership in Linux using the ls command

As you can see, each text block has its own meaning such as the permissions for owner, group, and others.

If you want to dive deep into file permissions, I would recommend our detailed guide on file permissions in Linux:

Linux File Permissions and Ownership Explained with Examples
Linux file permissions explained in simpler terms. Also learn how to change the file permissions and ownership in Linux in this detailed beginner’s guide.

2. Get information in a human-readable format

By default, the file size is shown in bytes which is not the best way to know your file size. So how do you get the same info but in human-readable form?

Simple. You use the -h option with the ls command:

ls -l -h

And here's the comparison between the default and the human-readable form:

list files using the ls command in human readable format
Comparison between the default and the human-readable form (Click to expand)

Much better. Isn't it?

πŸ’‘

The ls command is good to see the file sizes. However, it won't give you the directory size which is almost always displayed as 4K. To get directory size, use the du command.

3. List hidden files

Like any other file manager, the ls command won't list the hidden files (I mean they are supposed to be hidden. Right?).

But what if you want to list the hidden files along with the regular files? To do so, you can use the -a option:

ls -a

As you can see, the filename starting with a dot . are hidden files.

list hidden files in Linux terminal using the ls command
Click to expand
πŸ’‘

You may also use ls -A which works almost the same as ls -a except it won't include the . and .. directories.

4. List files recursively

There are multiple ways to list files recursively and using the ls command is one of them.

In case you don't know, listing files recursively means listing files of all the sub-directories present until the last element of every sub-directory is shown.

And to list files recursively, you can use the -R flag as shown:

ls -R
list files recursilvely in Linux using the ls command

In a way, it gives you the current directory structure. Personally, I prefer the for this purpose but you'll have to install it first.

πŸ’‘

You don't have to be in the directory to list its content. You can also list directory contents by providing its absolute or relative path like this: ls /var/log

5. Differentiate between files and directories while using ls

While the different colors for files and directories should do the job. But due to some reason, if you want to symbolize files and directories here you have it.

In the ls command, you have a -F flag that adds a forward slash / to every directory name:

ls -F
differenciate between files and directories while using the ls command

6. List only files with certain file extensions

There are times when you only want to list files with specific file extensions and trust me this is the easiest of all.

To do that, you don't have to use any options. Just append the file extension to the Asterisk * such as *.png, *.txt, etc:

ls *.extension

For example, if I only want to list the ISO files, then, I will be using the following command:

ls *.iso
list files of a specific file extensions

7. Sort output based on size

To sort the output based on the file size, you'd have to use the -S flag and it will list files from largest to the smallest manner (descending):

ls -lhS
sort files based on their file size using the ls command

Similarly, if you want to reverse this order to list the smallest files first, you can use the -r flag to reverse the order:

ls -lhSr
sort files from smallest to largest using the ls command

8. Sort files based on date and time

The ls commands includes the modified time in its listing.

To list the newest files first, you can use the -t flag as shown:

ls -lht
show newest files first while using the ls command

You can use the -r flag as I explained previously to reverse the order here too.

ls -lrt

This will give you the latest modified files at the bottom of the display. This is particularly helpful if you have too many files in the directory and want to see which files were modified recently. I used this while troubleshooting my software project.

Using ls -lrt command

Let's summarize what you've learned so far!

Here, I will share a table with multiple options that were used with the ls command in this tutorial:

Command Description
ls -l Long list of files and directories
ls -lh Prints information in human-readable form
ls -a Include hidden files in listing
ls -R List files recursively
ls -F Add a forward slash to the directory name
ls *.ext List files having specific extensions
ls -lS Sort files based on file size
ls -lt Sort files based on time
-r Reverse the sorting (combined with S or t)

πŸ‹οΈAnd practice your learning

Practicing what you've learned is always a good idea, which is why we try to add a practice section in each terminal guide.

So here are some simple practice exercise of the ls command:

  • List the contents of the /var/log
  • Save the command output in a file named output.txt
  • Identify the 3 most recent files (Use time based sorting)
  • Display the files based on their size but in reverse order
  • Check if there are any hidden files

That would be good practice for you. Stay tuned for more Linux command learning.

And if you are new to the terminal, don't forget to follow our Terminal Basics series

Linux Command Tutorials for Absolute Beginners
Never used Linux commands before? No worries. This tutorial series is for absolute beginners to the Linux terminal.

Enjoy :)

About the author
Sagar Sharma

Sagar Sharma

A software engineer who loves to write about his experience with Linux. While reviving my crashed system, you can find me reading literature, manga, or watering my plants.

It's FOSS

Making You a Better Linux User

It's FOSS

Great! You’ve successfully signed up.

Welcome back! You've successfully signed in.

You've successfully subscribed to It's FOSS.

Success! Check your email for magic link to sign-in.

Success! Your billing info has been updated.

Your billing was not updated.