[Linux小技巧]如何使用exa让你的ls看起来高大上
Posted angbors
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Linux小技巧]如何使用exa让你的ls看起来高大上相关的知识,希望对你有一定的参考价值。
第一步,下载并准备安装exa软件
1.安装依赖
exa软件由rust编写,所以首先必须安装rust
在合适的位置下载软件
wget https://static.rust-lang.org/rustup.sh
运行
sudo sh rustup.sh
2.下载软件
来到exa官方网站:https://the.exa.website/introduction
选择installing exa中的Linux,如果样例中有你使用的系统,则按照说明安装。如果没有,请进行下一步。
在Manual installation中,点击最新软件链接“You will need to download exa’s Linux binary”
或者直接运行:
wget https://github.com/ogham/exa/releases/download/v0.10.0/exa-linux-x86_64-v0.10.0.zip
unzip exa-linux-x86_64-v0.10.0.zip
mv exa-linux-x86_64-v0.10.0.zip /opt/
mv exa-linux-x86_64-v0.10.0.zip exa
第二步,配置exa并取代ls
sudo cp /usr/bin/ls /usr/bin/ls.bak
sudo rm /usr/bin/ls
sudo -ln -s /opt/exa/bin/exa /usr/bin/ls
验证,直接运行ls查看是否为彩色显示。
最后,使用
可以参考官方网站:https://the.exa.website/introduction
以上是关于[Linux小技巧]如何使用exa让你的ls看起来高大上的主要内容,如果未能解决你的问题,请参考以下文章