A tool that prints a horizontal rule, like the HTML <hr>
tag, to your terminal. hr is particularly useful for distinguishing the output when running multiple commands.
$ pwd; hr; tree -v
/home/xfgusta/Desktop/hr
--------------------------------------------------------------------------------
.
├── LICENSE
├── README.md
├── hr.1
├── hr.c
└── makefile
0 directories, 5 files
The install directory defaults to /usr/local
:
make install
You can install hr in a different directory using the PREFIX
variable:
make PREFIX=/usr install
Copyright (c) 2022 Gustavo Costa. Distributed under the MIT license.