Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davidborzek/explainshell-cli
CLI wrapper for explainshell.com
https://github.com/davidborzek/explainshell-cli
explainshell golang shell
Last synced: 26 days ago
JSON representation
CLI wrapper for explainshell.com
- Host: GitHub
- URL: https://github.com/davidborzek/explainshell-cli
- Owner: davidborzek
- Created: 2022-08-07T12:45:23.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-11T22:11:16.000Z (about 1 year ago)
- Last Synced: 2024-06-20T00:35:51.812Z (5 months ago)
- Topics: explainshell, golang, shell
- Language: Go
- Homepage:
- Size: 5.86 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# explainshell-cli
> CLI wrapper for explainshell.com
## Usage
```bash
explain [command]
```### Example
Explain the command `ls -lah`:
```bash
explain ls -lah
```Result:
```
list directory contents
__________________________________________________-l use a long listing format
__________________________________________________-a, --all
do not ignore entries starting with .
__________________________________________________-h, --human-readable
with -l, print sizes in human readable format (e.g., 1K 234M 2G)
__________________________________________________
```## Installation
```bash
go install github.com/davidborzek/explainshell-cli/cmd/explain@latest
```