aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: a25f245ef523e467ffae65ca30af772750296e57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# center

`center(1)` is a very basic UNIX utility to… well… center text.  The
documentation for the tool can be found [here][1].  If you would like to
contribute to the project, a list of tasks that need completing can be found in
the [TODO][2] file in the repo.  This utility should be as simple as possible,
accepting input from stdin and printing output to stdout.  This should be the
best utility possible to center text.

## Installation

If you're on an arch-based Linux distribution, then you can install `center`
from the aur:

```sh
paru -S center      # The lastest stable release
paru -S center-git  # The most up-to-date release
```

Otherwise if you would like to build from source, simply run:

```sh
git clone git://git.thomasvoss.com/center.git
cd center
make
make install
```

[1]: https://thomasvoss.com/man/center.1.html
[2]: https://git.thomasvoss.com/center/tree/TODO