2014-02-12 09:34:09 -05:00
|
|
|
sbase - suckless unix tools
|
|
|
|
===========================
|
|
|
|
|
|
|
|
sbase is a collection of unix tools that are inherently portable
|
|
|
|
across UNIX and UNIX-like systems.
|
|
|
|
|
2015-01-18 13:36:13 -05:00
|
|
|
The following tools are implemented ('*' == finished, '#' == UTF-8 support,
|
|
|
|
'=' == implicit UTF-8 support):
|
2014-11-20 18:01:56 -05:00
|
|
|
|
2015-01-18 13:41:14 -05:00
|
|
|
UTILITY POSIX 2008 COMPLIANT MISSING OPTIONS
|
|
|
|
------- -------------------- ---------------
|
2015-01-18 13:36:13 -05:00
|
|
|
=* basename yes none
|
|
|
|
=* cal yes none
|
|
|
|
=* cat yes none
|
|
|
|
= chgrp no -h, -H, -L, -P
|
|
|
|
=* chmod yes none
|
|
|
|
= chown no -h, -H, -L, -P
|
2015-01-31 17:54:23 -05:00
|
|
|
=* chroot non-posix none
|
2015-01-18 13:36:13 -05:00
|
|
|
=* cksum yes none
|
Refactor cmp(1) code and manpage
The algorithm had some areas which had potential for improvement.
This should make cmp(1) faster.
There have been changes to behaviour as well:
1) If argv[0] and argv[1] are the same, cmp(1) returns Same.
2) POSIX specifies the format of the difference-message to be:
"%s %s differ: char %d, line %d\n", file1, file2,
<byte number>, <line number>
However, as cmp(1) operates on bytes, not characters, I changed
it to
"%s %s differ: byte %d, line %d\n", file1, file2,
<byte number>, <line number>
This is one example where the standard just keeps the old format
for backwards-compatibility. As this is harmful, this change
makes sense in the sense of consistentcy (and because we take
the difference of char and byte very seriously in sbase, as
opposed to GNU coreutils).
The manpage has been annotated, reflecting the second change, and
sections shortened where possible.
Thus I marked cmp(1) as finished in README.
2015-02-07 15:05:33 -05:00
|
|
|
=* cmp yes none
|
2015-01-31 18:55:22 -05:00
|
|
|
#* cols non-posix none
|
2015-01-18 13:36:13 -05:00
|
|
|
=* comm yes none
|
2015-01-23 17:31:46 -05:00
|
|
|
= cp no -H, (-i), -L
|
2015-01-18 13:36:13 -05:00
|
|
|
=* cron non-posix none
|
2015-01-22 06:32:50 -05:00
|
|
|
#* cut yes none
|
2015-01-23 16:54:25 -05:00
|
|
|
=* date yes none
|
2015-01-23 17:17:54 -05:00
|
|
|
=* dirname yes none
|
2015-01-23 17:31:46 -05:00
|
|
|
= du no -H, -L, (-x)
|
2015-01-23 17:49:24 -05:00
|
|
|
=* echo yes none
|
2015-01-23 18:22:06 -05:00
|
|
|
=* env yes none
|
2015-01-25 08:31:02 -05:00
|
|
|
#* expand yes none
|
2015-01-25 10:49:46 -05:00
|
|
|
=* expr yes none
|
2015-01-18 13:36:13 -05:00
|
|
|
=* false yes none
|
2015-01-25 15:33:28 -05:00
|
|
|
#* fold yes none
|
|
|
|
=* grep yes none
|
2015-01-25 16:01:26 -05:00
|
|
|
=* head yes none
|
2015-01-31 18:03:03 -05:00
|
|
|
=* hostname non-posix none
|
2015-01-18 13:36:13 -05:00
|
|
|
=* kill yes none
|
2015-01-25 16:44:47 -05:00
|
|
|
=* link yes none
|
2015-01-26 08:54:22 -05:00
|
|
|
=* ln yes none
|
2015-01-18 13:36:13 -05:00
|
|
|
=* logger yes none
|
2015-01-26 09:06:50 -05:00
|
|
|
=* logname yes none
|
2015-01-20 11:50:37 -05:00
|
|
|
= ls no -C, -R, -q, -u
|
2015-01-31 17:54:23 -05:00
|
|
|
=* md5sum non-posix none
|
2015-01-26 09:30:56 -05:00
|
|
|
=* mkdir yes none
|
2015-01-28 14:55:50 -05:00
|
|
|
=* mkfifo yes none
|
2015-01-31 18:14:19 -05:00
|
|
|
=* mktemp non-posix none
|
2015-01-28 16:06:50 -05:00
|
|
|
=* mv yes (-i)
|
2015-01-28 16:40:40 -05:00
|
|
|
=* nice yes none
|
2015-01-18 13:36:13 -05:00
|
|
|
= nl no -d, -f, -h, -l, -n, -p, -v, -w
|
2015-01-28 17:55:57 -05:00
|
|
|
=* nohup yes none
|
2015-01-29 15:26:09 -05:00
|
|
|
#* paste yes none
|
2015-01-31 18:23:38 -05:00
|
|
|
=* printenv non-posix none
|
2015-01-18 13:36:13 -05:00
|
|
|
printf stolen stolen
|
|
|
|
=* pwd yes none
|
2015-01-31 18:43:43 -05:00
|
|
|
= readlink non-posix -e, -m
|
2015-01-29 17:58:44 -05:00
|
|
|
=* renice yes none
|
2015-01-30 05:34:05 -05:00
|
|
|
=* rm yes (-i)
|
2015-01-30 07:30:03 -05:00
|
|
|
=* rmdir yes none
|
2015-01-31 18:47:32 -05:00
|
|
|
=* setsid non-posix none
|
2015-01-30 07:41:36 -05:00
|
|
|
=* sleep yes none
|
2015-01-18 13:36:13 -05:00
|
|
|
sort no -m, -o, -d, -f, -i
|
2015-02-01 08:00:47 -05:00
|
|
|
=* split yes none
|
2015-01-18 13:36:13 -05:00
|
|
|
= sponge non-posix none
|
|
|
|
strings no -a, -n, -t
|
|
|
|
= sync non-posix none
|
|
|
|
= tail no -c, -f
|
|
|
|
= tar non-posix none
|
2015-01-23 16:04:19 -05:00
|
|
|
=* tee yes none
|
2015-01-18 13:36:13 -05:00
|
|
|
test yes none
|
2015-01-20 06:22:09 -05:00
|
|
|
= touch no -r
|
2015-01-18 13:36:13 -05:00
|
|
|
#* tr yes none
|
|
|
|
=* true yes none
|
2015-02-07 16:00:28 -05:00
|
|
|
=* tty yes none
|
2015-02-07 16:15:56 -05:00
|
|
|
=* uname yes none
|
2015-01-18 13:36:13 -05:00
|
|
|
# unexpand yes none
|
|
|
|
= uniq no -f, -s
|
|
|
|
= unlink yes none
|
2015-01-26 07:12:44 -05:00
|
|
|
= uudecode no -o
|
|
|
|
= uuencode no -m
|
2015-01-18 13:36:13 -05:00
|
|
|
seq non-posix none
|
|
|
|
= sha1sum non-posix none
|
|
|
|
= sha256sum non-posix none
|
|
|
|
= sha512sum non-posix none
|
2015-01-31 21:01:11 -05:00
|
|
|
#* wc yes none
|
2015-01-18 13:36:13 -05:00
|
|
|
= xargs no -I, -L, -p, -s, -t, -x
|
2015-01-31 20:27:44 -05:00
|
|
|
=* yes non-posix none
|
2014-11-20 18:01:56 -05:00
|
|
|
|
2014-02-12 13:39:13 -05:00
|
|
|
The complement of sbase is ubase[1] which is Linux-specific and
|
2014-02-12 09:34:09 -05:00
|
|
|
provides all the non-portable tools. Together they are intended to
|
|
|
|
form a base system similar to busybox but much smaller and suckless.
|
|
|
|
|
|
|
|
Building
|
|
|
|
--------
|
|
|
|
|
|
|
|
To build sbase, simply type make. You may have to fiddle with
|
|
|
|
config.mk depending on your system.
|
|
|
|
|
|
|
|
You can also build sbase-box, which generates a single binary
|
|
|
|
containing all the required tools. You can then symlink the
|
|
|
|
individual tools to sbase-box.
|
|
|
|
|
|
|
|
Ideally you will want to statically link sbase. If you are on Linux
|
|
|
|
we recommend using musl-libc[2].
|
|
|
|
|
|
|
|
Portability
|
|
|
|
-----------
|
|
|
|
|
|
|
|
sbase has been compiled on a variety of different operating systems,
|
|
|
|
including Linux, *BSD, OSX, Haiku, Solaris, SCO OpenServer and others.
|
|
|
|
|
|
|
|
Various combinations of operating systems and architectures have also
|
|
|
|
been built.
|
|
|
|
|
|
|
|
You can build sbase with gcc, clang, tcc, nwcc and pcc.
|
|
|
|
|
|
|
|
[1] http://git.suckless.org/ubase/
|
|
|
|
[2] http://www.musl-libc.org/
|