Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amancevice/spin
Execute a command and display a scrolling block of logs
https://github.com/amancevice/spin
Last synced: about 2 months ago
JSON representation
Execute a command and display a scrolling block of logs
- Host: GitHub
- URL: https://github.com/amancevice/spin
- Owner: amancevice
- License: mit
- Created: 2024-02-19T19:21:13.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-03T18:27:10.000Z (10 months ago)
- Last Synced: 2024-10-10T04:07:55.403Z (2 months ago)
- Language: Shell
- Size: 1.22 MB
- Stars: 12
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Spin
Execute a command and display a scrolling block of logs
Inspired by Docker's layer build output.
![example](./docs/example.gif)
## Usage
Simple usage:
```bash
spin -- bin/example
```Customize the colors (ANSI codes), number of lines streamed, and title:
```bash
spin \
--title 'just an example' \
--lines 7 \
--color-logs 235 \
--color-spinner 41 \
--color-title 99 \
-- bin/example
```