mirror of
https://github.com/LCTT/TranslateProject.git
synced 2025-03-03 01:10:13 +08:00
commit
feaca0311d
@ -1,111 +0,0 @@
|
||||
[#]: subject: (Why I use exa instead of ls on Linux)
|
||||
[#]: via: (https://opensource.com/article/21/3/replace-ls-exa)
|
||||
[#]: author: (Sudeshna Sur https://opensource.com/users/sudeshna-sur)
|
||||
[#]: collector: (lujun9972)
|
||||
[#]: translator: (geekpi)
|
||||
[#]: reviewer: ( )
|
||||
[#]: publisher: ( )
|
||||
[#]: url: ( )
|
||||
|
||||
Why I use exa instead of ls on Linux
|
||||
======
|
||||
Exa is a modern-day replacement for the Linux ls command.
|
||||
![bash logo on green background][1]
|
||||
|
||||
We live in a busy world and can save time and effort by using the ls command when we need to look for files and data. But without a lot of tweaking, the default ls output isn't quite soothing to the eyes. Why spend your time squinting at black and white text when you have an alternative in exa?
|
||||
|
||||
[Exa][2] is a modern-day replacement for the regular ls command, and it makes life easier. The tool is written in [Rust][3], which is known for its parallelism and safety.
|
||||
|
||||
### Install exa
|
||||
|
||||
To install exa, run:
|
||||
|
||||
|
||||
```
|
||||
`$ dnf install exa`
|
||||
```
|
||||
|
||||
### Explore exa's features
|
||||
|
||||
Exa improves upon the ls file list with more features and better defaults. It uses colors to distinguish file types and metadata. It knows about symlinks, extended attributes, and Git. And it's small, fast, and has just a single binary.
|
||||
|
||||
#### Track files
|
||||
|
||||
You can use exa to track a new file added in a given Git repo.
|
||||
|
||||
![Tracking Git files with exa][4]
|
||||
|
||||
(Sudeshna Sur, [CC BY-SA 4.0][5])
|
||||
|
||||
#### Tree structure
|
||||
|
||||
This is exa's basic tree structure. The level determines the depth of the listing; this is set to two. If you want to list more subdirectories and files, increase the level's value.
|
||||
|
||||
![exa's default tree structure][6]
|
||||
|
||||
(Sudeshna Sur, [CC BY-SA 4.0][5])
|
||||
|
||||
This tree includes a lot of metadata about each file.
|
||||
|
||||
![Metadata in exa's tree structure][7]
|
||||
|
||||
(Sudeshna Sur, [CC BY-SA 4.0][5])
|
||||
|
||||
#### Color schemes
|
||||
|
||||
By default, exa segregates different file types according to [built-in color schemes][8]. It not only color-codes files and directories, but also Cargo.toml, CMakeLists.txt, Gruntfile.coffee, Gruntfile.js, Makefile, and many other file types.
|
||||
|
||||
#### Extended file attributes
|
||||
|
||||
When you're exploring xattrs (extended file attributes) in exa, `--extended` will show up in all the xattrs.
|
||||
|
||||
![xattrs in exa][9]
|
||||
|
||||
(Sudeshna Sur, [CC BY-SA 4.0][5])
|
||||
|
||||
#### Symlinks
|
||||
|
||||
Exa understands symlinks and also points out the actual file.
|
||||
|
||||
![symlinks in exa][10]
|
||||
|
||||
(Sudeshna Sur, [CC BY-SA 4.0][5])
|
||||
|
||||
#### Recurse
|
||||
|
||||
When you want to loop listings for all directories under the current directory, exa brings in recurse.
|
||||
|
||||
![recurse in exa][11]
|
||||
|
||||
(Sudeshna Sur, [CC BY-SA 4.0][5])
|
||||
|
||||
### Conclusion
|
||||
|
||||
I believe exa is one of the easiest, most adaptable tools. It helps me track a lot of Git and Maven files. Its color-coding makes it easier for me to search through multiple subdirectories, and it helps me to understand the current xattrs.
|
||||
|
||||
Have you replaced ls with exa? Please share your feedback in the comments.
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
via: https://opensource.com/article/21/3/replace-ls-exa
|
||||
|
||||
作者:[Sudeshna Sur][a]
|
||||
选题:[lujun9972][b]
|
||||
译者:[译者ID](https://github.com/译者ID)
|
||||
校对:[校对者ID](https://github.com/校对者ID)
|
||||
|
||||
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
||||
|
||||
[a]: https://opensource.com/users/sudeshna-sur
|
||||
[b]: https://github.com/lujun9972
|
||||
[1]: https://opensource.com/sites/default/files/styles/image-full-size/public/lead-images/bash_command_line.png?itok=k4z94W2U (bash logo on green background)
|
||||
[2]: https://the.exa.website/docs
|
||||
[3]: https://opensource.com/tags/rust
|
||||
[4]: https://opensource.com/sites/default/files/uploads/exa_trackingfiles.png (Tracking Git files with exa)
|
||||
[5]: https://creativecommons.org/licenses/by-sa/4.0/
|
||||
[6]: https://opensource.com/sites/default/files/uploads/exa_treestructure.png (exa's default tree structure)
|
||||
[7]: https://opensource.com/sites/default/files/uploads/exa_metadata.png (Metadata in exa's tree structure)
|
||||
[8]: https://the.exa.website/features/colours
|
||||
[9]: https://opensource.com/sites/default/files/uploads/exa_xattrs.png (xattrs in exa)
|
||||
[10]: https://opensource.com/sites/default/files/uploads/exa_symlinks.png (symlinks in exa)
|
||||
[11]: https://opensource.com/sites/default/files/uploads/exa_recurse.png (recurse in exa)
|
111
translated/tech/20210322 Why I use exa instead of ls on Linux.md
Normal file
111
translated/tech/20210322 Why I use exa instead of ls on Linux.md
Normal file
@ -0,0 +1,111 @@
|
||||
[#]: subject: (Why I use exa instead of ls on Linux)
|
||||
[#]: via: (https://opensource.com/article/21/3/replace-ls-exa)
|
||||
[#]: author: (Sudeshna Sur https://opensource.com/users/sudeshna-sur)
|
||||
[#]: collector: (lujun9972)
|
||||
[#]: translator: (geekpi)
|
||||
[#]: reviewer: ( )
|
||||
[#]: publisher: ( )
|
||||
[#]: url: ( )
|
||||
|
||||
为什么我在 Linux 上使用 exa 而不是 ls?
|
||||
======
|
||||
Exa 是一个现代的 Linux ls 命令的替代品。
|
||||
![bash logo on green background][1]
|
||||
|
||||
我们生活在一个繁忙的世界里,当我们需要查找文件和数据时,使用 ls 命令可以节省时间和精力。但如果不经过大量调整,默认的 ls 输出并不十分舒心。当 exa 中有一个替代方案时,为什么要花时间眯着眼睛看黑白文字呢?
|
||||
|
||||
[Exa][2] 是一个现代的常规 ls 命令的替代品,它让生活变得更轻松。这个工具是用 [Rust][3] 编写的,该语言以并行性和安全性而闻名。
|
||||
|
||||
### 安装 exa
|
||||
|
||||
要安装 exa,请运行:
|
||||
|
||||
|
||||
```
|
||||
`$ dnf install exa`
|
||||
```
|
||||
|
||||
### 探索 exa 的功能
|
||||
|
||||
Exa 改进了 ls 文件列表,它提供了更多的功能和更好的默认值。它使用颜色来区分文件类型和元数据。它能识别符号链接、扩展属性和 Git。而且它体积小、速度快,只有一个二进制文件。
|
||||
|
||||
#### 跟踪文件
|
||||
|
||||
你可以使用 exa 来跟踪某个 Git 仓库中新增的文件。
|
||||
|
||||
![Tracking Git files with exa][4]
|
||||
|
||||
(Sudeshna Sur, [CC BY-SA 4.0][5])
|
||||
|
||||
#### 树形结构
|
||||
|
||||
这是 exa 的基本树形结构。level 的值决定了列表的深度,这里设置为 2。如果你想列出更多的子目录和文件,请增加 level 的值。
|
||||
|
||||
![exa's default tree structure][6]
|
||||
|
||||
(Sudeshna Sur, [CC BY-SA 4.0][5])
|
||||
|
||||
这个树包含了很多关于每个文件的元数据。
|
||||
|
||||
![Metadata in exa's tree structure][7]
|
||||
|
||||
(Sudeshna Sur, [CC BY-SA 4.0][5])
|
||||
|
||||
#### 配色方案
|
||||
|
||||
默认情况下,exa 根据[内置的配色方案][8]来标识不同的文件类型。它不仅对文件和目录进行颜色编码,还对 Cargo.toml、CMakeLists.txt、Gruntfile.coffee、Gruntfile.js、Makefile 等多种文件类型进行颜色编码。
|
||||
|
||||
#### 扩展文件属性
|
||||
|
||||
当你使用 exa 探索 xattrs (扩展的文件属性)时,`--extended` 会显示所有的 xattrs。
|
||||
|
||||
![xattrs in exa][9]
|
||||
|
||||
(Sudeshna Sur, [CC BY-SA 4.0][5])
|
||||
|
||||
#### 符号链接
|
||||
|
||||
Exa 能识别符号链接,也能指出实际的文件。
|
||||
|
||||
![symlinks in exa][10]
|
||||
|
||||
(Sudeshna Sur, [CC BY-SA 4.0][5])
|
||||
|
||||
#### 递归
|
||||
|
||||
当你想递归当前目录下所有目录的列表时,exa 能进行递归。
|
||||
|
||||
![recurse in exa][11]
|
||||
|
||||
(Sudeshna Sur, [CC BY-SA 4.0][5])
|
||||
|
||||
### 总结
|
||||
|
||||
我相信 exa 是最简单、最容易适应的工具之一。它帮助我跟踪了很多 Git 和 Maven 文件。它的颜色编码让我更容易在多个子目录中进行搜索,它还能帮助我了解当前的 xattrs。
|
||||
|
||||
你是否已经用 exa 替换了 ls?请在评论中分享你的反馈。
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
via: https://opensource.com/article/21/3/replace-ls-exa
|
||||
|
||||
作者:[Sudeshna Sur][a]
|
||||
选题:[lujun9972][b]
|
||||
译者:[geekpi](https://github.com/geekpi)
|
||||
校对:[校对者ID](https://github.com/校对者ID)
|
||||
|
||||
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
||||
|
||||
[a]: https://opensource.com/users/sudeshna-sur
|
||||
[b]: https://github.com/lujun9972
|
||||
[1]: https://opensource.com/sites/default/files/styles/image-full-size/public/lead-images/bash_command_line.png?itok=k4z94W2U (bash logo on green background)
|
||||
[2]: https://the.exa.website/docs
|
||||
[3]: https://opensource.com/tags/rust
|
||||
[4]: https://opensource.com/sites/default/files/uploads/exa_trackingfiles.png (Tracking Git files with exa)
|
||||
[5]: https://creativecommons.org/licenses/by-sa/4.0/
|
||||
[6]: https://opensource.com/sites/default/files/uploads/exa_treestructure.png (exa's default tree structure)
|
||||
[7]: https://opensource.com/sites/default/files/uploads/exa_metadata.png (Metadata in exa's tree structure)
|
||||
[8]: https://the.exa.website/features/colours
|
||||
[9]: https://opensource.com/sites/default/files/uploads/exa_xattrs.png (xattrs in exa)
|
||||
[10]: https://opensource.com/sites/default/files/uploads/exa_symlinks.png (symlinks in exa)
|
||||
[11]: https://opensource.com/sites/default/files/uploads/exa_recurse.png (recurse in exa)
|
Loading…
Reference in New Issue
Block a user