centos下载exa
时间: 2023-12-08 22:00:02 浏览: 89
As an AI language model, I cannot download any files. However, you can download the exa binary for CentOS from the official website using the following command:
```
curl -LO https://github.com/ogham/exa/releases/download/v0.10.0/exa-linux-x86_64-0.10.0.zip
```
Once the download is complete, unzip the file using the following command:
```
unzip exa-linux-x86_64-0.10.0.zip
```
Then, move the exa binary to a directory in your $PATH, such as /usr/local/bin:
```
sudo mv exa-linux-x86_64 /usr/local/bin/exa
```
Now you can use exa by running the command `exa` in the terminal.
阅读全文