sbase

suckless unix tools
git clone git://git.2f30.org/sbase
Log | Files | Refs | README | LICENSE

commit 2404eb5b6b9dadf4da11ef149d5cc7cca4014fd6
parent 515f8cd35ff408da855ed4c05e0e9fcb0d28acee
Author: Connor Lane Smith <cls@lubutu.com>
Date:   Wed,  8 Jun 2011 17:54:55 +0100

add todo
Diffstat:
ATODO | 31+++++++++++++++++++++++++++++++
Mconfig.mk | 2+-
2 files changed, 32 insertions(+), 1 deletion(-)

diff --git a/TODO b/TODO @@ -0,0 +1,31 @@ +cksum [file...] + +cmp [-ls] file1 file2 + +comm [-123] file1 file2 + +cp [-r] file [name] +cp [-r] [file...] [directory] + +cut [-bcfs] [-d delim] list [file...] + +diff [-ru] file1 file2 + +fold [-bs] [-w width] [file...] + +id [-gnru] [user] + +kill [-s signal] [pid...] + +mv file [name] +mv [file...] directory + +nohup command [argument...] + +paste [-s] [-d list] [file...] + +printf format [argument...] + +test [expression...] + +tr string1 [string2] diff --git a/config.mk b/config.mk @@ -3,7 +3,7 @@ VERSION = 0.0 # paths PREFIX = /usr/local -MANPREFIX = ${PREFIX}/share/man +MANPREFIX = $(PREFIX)/share/man #CC = gcc #CC = musl-gcc