An open API service indexing awesome lists of open source software.

https://github.com/developerstoolbox/draw-lines

A bash script that allows you to draw multiple different types of lines on the console.
https://github.com/developerstoolbox/draw-lines

bash bash-script lines wolfsoftware

Last synced: 7 months ago
JSON representation

A bash script that allows you to draw multiple different types of lines on the console.

Awesome Lists containing this project

README

          



DevelopersToolbox logo




Github Build Status


License


Created




Release


Released


Commits since release















## Overview

This is a simple bash plugin which provides a consistent method for drawing lines on the console.

This was first implemented in our [CI/CD Toolbox](https://github.com/CICDToolbox) tools, but we externalised it so it could
be released and used independently.

## Example
```sh
export screen_width=97

# shellcheck disable=SC1091
source ../src/draw-lines.sh

draw_line
align_right "Wolf Software"
align_right "Wolf Software" 4
align_left "Wolf Software"
align_left "Wolf Software" 4
align_center "Wolf Software"
```

## Example Output
```
─────────────────────────────────────────────────────────────────────────────────────────────────
──────────────────────────────────────────────────────────────────────────────── Wolf Software ──
────────────────────────────────────────────────────────────────────────────── Wolf Software ────
── Wolf Software ────────────────────────────────────────────────────────────────────────────────
──── Wolf Software ──────────────────────────────────────────────────────────────────────────────
───────────────────────────────────────── Wolf Software ─────────────────────────────────────────
```