Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bootjp/bcat
A command-line tool that allows transparent ls and cat operations regardless of whether they are files or directories.
https://github.com/bootjp/bcat
command-line-tool rust
Last synced: 3 months ago
JSON representation
A command-line tool that allows transparent ls and cat operations regardless of whether they are files or directories.
- Host: GitHub
- URL: https://github.com/bootjp/bcat
- Owner: bootjp
- License: apache-2.0
- Created: 2021-05-20T10:52:25.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-07T19:59:09.000Z (4 months ago)
- Last Synced: 2024-10-09T14:22:20.115Z (4 months ago)
- Topics: command-line-tool, rust
- Language: Rust
- Homepage:
- Size: 514 KB
- Stars: 3
- Watchers: 3
- Forks: 3
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bcat (transparently ls and cat, lcat renamed bcat)
A command-line tool that allows transparent ls and cat operations regardless of whether they are files or directories.
Also for practicing Rust.
## install
### by cargo
```sh
cargo install bcat
```### by release binary for linux x86
```sh
curl -LO https://github.com/bootjp/bcat/releases/latest/download/bcat
chmod +x bcat
./bcat .
sudo cp bcat /usr/local/bin/
```## example
### for dir
![directory example](.doc/dir.png)
### for file
![file example](.doc/file.png)