search
HomeSystem TutorialLINUXMake your Linux file management easier - upgrade to exa tool

Make your Linux file management easier - upgrade to exa tool

Feb 12, 2024 pm 01:09 PM
linuxlinux tutoriallinux systemlinux commandFormatted outputshell scriptembeddedlinuxGetting started with linuxlinux learning

In Linux systems, file management is a very important operation, but the traditional ls command cannot meet the user's needs for file list display. At this time, a more powerful and easy-to-use tool is needed. Today, we will introduce a tool called exa, which can make your Linux file management simpler and more efficient.

exa command introduction

exa is a command line tool that can list directories and files in the specified path (if not specified, the current directory). This may sound familiar because that's what the ls command does.

exa is considered a modern replacement for the ancient ls command that has been around since the old days of UNIX. As claimed, it has more features and better default behavior than the ls command.

Make your Linux file management easier - upgrade to exa tool

exa function

Here are some reasons why you should use exa instead of ls:

exa is as portable as ls (available on all major Linux distributions, *BSD and macOS)
Default color output
exa's differently formatted "verbose" output may appeal to Linux/BSD newbies
File queries are performed in parallel, which makes the performance of exa and ls comparable
Display the git staged or unstaged status of a single file
Another thing that makes exa different is that it is written in Rust. By the way, Rust has similar execution speed to C, but reduces memory errors at compile time so your software can execute quickly and safely.

Install exa on Linux system

exa has become popular recently as many distributions have started including it in their official software repositories. That said, you should be able to install it using your [distribution's package manager].

Starting with Ubuntu 20.10, you can use the apt command to install it:

sudo apt install exa
Arch Linux already has it, you just need to use the pacman command:

sudo pacman -S exa
Don't worry if it doesn't install through your package manager. After all it is a Rust package and you can easily install it with Cargo. Make sure you have Rust and Cargo installed on whatever distribution you are using or Ubuntu.

After installing Rust and Cargo, use this command to install exa:

cargo install exa

Use exa

exa has many command options, mainly for better formatted output and some improvements to improve comfort, such as the git staged or unstaged status of files, etc.

Below are some screenshots showing how exa works on your system.

Simply using the exa command will produce output similar to ls but with colors. This color thing might not be that appealing, since distributions like Ubuntu already provide colored ls output, at least in the desktop version. However, the ls command itself does not have colored output by default.

Make your Linux file management easier - upgrade to exa tool

Screenshot of the output of the exa command without any additional flags

Please note that the options for the exa and ls commands are not the same. For example, while the -l option gives a long listing in both exa and ls, the -h option adds a column header instead of the human-readable option of ls.

Make your Linux file management easier - upgrade to exa tool

As I mentioned before, exa has column headers for better "verbose" output

As I said before, exa already has built-in Git integration. The screenshot below gives a demonstration of the –git flag. Note that test_file shows -N in git's tracked column because it hasn't been added to the repository yet.

Make your Linux file management easier - upgrade to exa tool

Demo how git flags work with exa

The examples below were not typed by my cat. It is a combination of options. exa has many options for you to try and explore.

Make your Linux file management easier - upgrade to exa tool

A very colorful and detailed output with user-friendly verbose output

You can get the full list of options by running the following command in the terminal:

exa --help

However, if you want to understand what exa has to offer, you can check out the official documentation on its Git repository.

Is it worth switching from ls to exa?

For those new to UNIX-like operating systems, exa may be user-friendly, sacrificing ease of use in scripts for "ease of use" and appearance. Which shows more clearly is not a bad thing.

Anyway, ls is like a universal command. You can use exa for personal use, but when writing scripts, stick to ls. The difference in one [or more] flags between ls and exa can drive you crazy when the expected output does not match the actual output in either command.

I want to know what you think about exa. Have you tried it already? What was your experience with it?

Through the introduction of this article, we have learned about the basic usage of the exa tool and some common options and parameters. Compared with the traditional ls command, exa provides more rich information display and formatting options, making our file management easier and more efficient. If you are a Linux system administrator or developer, then please do not hesitate to upgrade to the exa tool quickly!

The above is the detailed content of Make your Linux file management easier - upgrade to exa tool. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:良许Linux教程网. If there is any infringement, please contact admin@php.cn delete
Is it hard to learn Linux?Is it hard to learn Linux?Apr 18, 2025 am 12:23 AM

Learning Linux is not difficult. 1.Linux is an open source operating system based on Unix and is widely used in servers, embedded systems and personal computers. 2. Understanding file system and permission management is the key. The file system is hierarchical, and permissions include reading, writing and execution. 3. Package management systems such as apt and dnf make software management convenient. 4. Process management is implemented through ps and top commands. 5. Start learning from basic commands such as mkdir, cd, touch and nano, and then try advanced usage such as shell scripts and text processing. 6. Common errors such as permission problems can be solved through sudo and chmod. 7. Performance optimization suggestions include using htop to monitor resources, cleaning unnecessary files, and using sy

What is the salary of Linux administrator?What is the salary of Linux administrator?Apr 17, 2025 am 12:24 AM

The average annual salary of Linux administrators is $75,000 to $95,000 in the United States and €40,000 to €60,000 in Europe. To increase salary, you can: 1. Continuously learn new technologies, such as cloud computing and container technology; 2. Accumulate project experience and establish Portfolio; 3. Establish a professional network and expand your network.

What is the main purpose of Linux?What is the main purpose of Linux?Apr 16, 2025 am 12:19 AM

The main uses of Linux include: 1. Server operating system, 2. Embedded system, 3. Desktop operating system, 4. Development and testing environment. Linux excels in these areas, providing stability, security and efficient development tools.

Does the internet run on Linux?Does the internet run on Linux?Apr 14, 2025 am 12:03 AM

The Internet does not rely on a single operating system, but Linux plays an important role in it. Linux is widely used in servers and network devices and is popular for its stability, security and scalability.

What are Linux operations?What are Linux operations?Apr 13, 2025 am 12:20 AM

The core of the Linux operating system is its command line interface, which can perform various operations through the command line. 1. File and directory operations use ls, cd, mkdir, rm and other commands to manage files and directories. 2. User and permission management ensures system security and resource allocation through useradd, passwd, chmod and other commands. 3. Process management uses ps, kill and other commands to monitor and control system processes. 4. Network operations include ping, ifconfig, ssh and other commands to configure and manage network connections. 5. System monitoring and maintenance use commands such as top, df, du to understand the system's operating status and resource usage.

Boost Productivity with Custom Command Shortcuts Using Linux AliasesBoost Productivity with Custom Command Shortcuts Using Linux AliasesApr 12, 2025 am 11:43 AM

Introduction Linux is a powerful operating system favored by developers, system administrators, and power users due to its flexibility and efficiency. However, frequently using long and complex commands can be tedious and er

What is Linux actually good for?What is Linux actually good for?Apr 12, 2025 am 12:20 AM

Linux is suitable for servers, development environments, and embedded systems. 1. As a server operating system, Linux is stable and efficient, and is often used to deploy high-concurrency applications. 2. As a development environment, Linux provides efficient command line tools and package management systems to improve development efficiency. 3. In embedded systems, Linux is lightweight and customizable, suitable for environments with limited resources.

Essential Tools and Frameworks for Mastering Ethical Hacking on LinuxEssential Tools and Frameworks for Mastering Ethical Hacking on LinuxApr 11, 2025 am 09:11 AM

Introduction: Securing the Digital Frontier with Linux-Based Ethical Hacking In our increasingly interconnected world, cybersecurity is paramount. Ethical hacking and penetration testing are vital for proactively identifying and mitigating vulnerabi

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Will R.E.P.O. Have Crossplay?
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment