https://github.com/agnostk/shikibetsu
Shikibetsu (識別) is a command line tool to list files and directory information.
https://github.com/agnostk/shikibetsu
Last synced: 4 months ago
JSON representation
Shikibetsu (識別) is a command line tool to list files and directory information.
- Host: GitHub
- URL: https://github.com/agnostk/shikibetsu
- Owner: agnostk
- License: mit
- Created: 2023-11-13T10:34:35.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-26T05:19:36.000Z (over 1 year ago)
- Last Synced: 2025-01-11T22:45:37.689Z (5 months ago)
- Language: Rust
- Size: 84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Shikibetsu (識別)
[](https://github.com/agnostk/shikibetsu/actions)
[](https://agnostk.github.io/shikibetsu/coverage)A command-line tool for listing files and directories.
---
## Usage
```bash
sb [OPTIONS] [PATH]
```### Examples
List entries in the current directory:
```bash
sb
```List entries in the current directory, including hidden entries:
```bash
sb -a
```List entries in the current directory, including hidden entries, and sort by size:
```bash
sb -a --sort=s
```List entries in the current directory, recursively, including hidden entries and format with emoji icons:
```bash
sb -aRe
```## Command-line options
- `-a`, `--all`
- do not ignore entries starting with .
- `-c`, `--created`
- display created at timestamp
- `-d`, `--dirs`
- show only directories
- `-e`, `--emoji`
- prepend entries with emojis (📄, 📁, 🔗)
- `-f`, `--files`
- show only files
- `-r`, `--reverse`
- reverse sort order
- `-R`, `--recursive`
- list directories recursively
- `-s`, `--sort=WORD`
- sort by WORD: name (`n`), ctime (`c`), mtime (`m`), size (`s`)
- `-S`, `--size`
- display size
- `-m`, `--modified`
- display modified at timestamp
- `-p`, `--perms`
- show permissions (`rwx`) for `[root|group|user]`## License
[Shikibetsu (識別)](#shikibetsu-%E8%AD%98%E5%88%A5) is licensed under the MIT License. See [LICENSE](LICENSE) for more information.