New utilities for a new era.
Go to file
2024-09-11 15:42:58 -06:00
docs peek.1: replace parens with square brackets 2024-09-01 08:50:12 -06:00
include Makefile: replace include/None.mk with /dev/null 2024-08-13 11:56:09 -06:00
src peek(1): fix erroring on stdin/stdout redirection 2024-09-01 08:50:13 -06:00
tests tests: bonsai/peek.mk 2024-09-01 08:51:33 -06:00
.editorconfig
.gitignore
CONDUCT CONDUCT: wording 2024-06-05 17:27:13 -06:00
CONTRIBUTING Merge branch 'rdme' 2024-09-05 17:02:31 -06:00
COPYING
Makefile Makefile: fixes abuse of relative paths 2024-09-05 17:12:39 -06:00
README README: improvements, community links 2024-08-12 17:53:43 -06:00
STYLE STYLE: repition & Kernighan quote 2024-07-28 00:34:42 -06:00

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

“Seek not to walk the path of the masters; seek what they sought.”
 Matsuo Basho

Bonsais Harakit is an alternative to the standard POSIX utilities that aims to
be simpler, easier, and more powerful. These tools are the result of careful
examination of the current state common Unix utilities, POSIX-compliant and
otherwise, following frustrations with design decisions and implementation
details. They represent a vision of accomplishing everyday use cases with tools
that follow the Unix philosophy of “do one thing and do it well” without
clinging to the past.

The intent of Harakit is not to conform to or extend POSIX, like the GNU or BSD
utilities do, but to invent new utilities to perform the same tasks in more
intuitive ways. GNU and BSD extensions are convenient but often unhealthy,
forgetting the purposes of the tools they extend, or building into existing
utilities features that would be more useful as their own tools to be used
anywhere. Other utility sets aim to provide a number of fully-featured
programs to be used individually, Harakit utilities are meant to be easily
composable and work together in pipelines.

See docs/ for more on the specific utilities currently implemented.


Building
========

Harakit utilities require a POSIX-compliant environment to compile, including a
C compiler and preprocessor (cc(1) and cpp(1) by default), an edition 2023 Rust
compiler (rustc(1) by default), bindgen(1), and a POSIX-compliant make(1)
utility.

To build and install:

$ make
$ make PREFIX="/your/preferred/location" install

To build with a different compiler than the default:

$ make CC=clang
$ make RUSTC=gccrs

To test the utilities:

$ make test

To remove all build and distributable files:

$ make clean


Contributing
============

See the CONTRIBUTING file for contribution guidelines.


Community
=========

xmpp://bonsai@covenant.murderu.us
irc://feeling.murderu.us/#bonsai


Read More
=========

An Introduction to the Unix Shell
<https://porkmail.org/era/unix/shell>

Master Foo and the Ten Thousand Lines
<http://www.catb.org/~esr/writings/unix-koans/ten-thousand.html>

Master Foo Discourses on the Unix-Nature
<http://www.catb.org/~esr/writings/unix-koans/unix-nature.html>

Shell Programming!
<https://tldp.org/LDP/abs/html/why-shell.html>

UNIX Style, or cat -v Considered Harmful
<http://harmful.cat-v.org/cat-v/>


--
Copyright © 20232024 Emma Tebibyte <emma@tebibyte.media>
Copyright © 2024 DTB <trinity@trinity.moe>

This work is licensed under CC BY-SA 4.0. To view a copy of this license, visit
<http://creativecommons.org/licenses/by-sa/4.0/>.