Simple tool to preview multiple files on the terminal, built with Go.
- Make sure Go is installed on your system
- Run the command to install it directly from the repo.
go install github.com/nelsonr/peek@latest
Alternativately, clone the repo and built directly from the source with:
go build
Run the command peek
anywhere to preview the files of the current directory.
You also combine with other commands, via the pipe operator.
Example:
find . -name *.log | peek
This would create a preview of all log files found in the current directory (and descending levels).
Peek was mainly built with the tview Go package.