spacer

Add spacers and separators to command output for better readability

brewmacoslinux
Try with needOr install directly
Source

About

Small command-line utility for adding spacers to command output

Commands

spacer

Examples

Add a blank line between command outputs$ echo 'First output' | spacer && echo 'Second output'
Add a custom separator line to divide sections$ ls | spacer -s '---' && echo 'Next section'
Pipe multiple commands with visual separation$ df -h | spacer && du -sh ~