joshhartigan / iu-coreutils

alternative, simpler coreutils - not a GNU fork/clone
BSD 2-Clause "Simplified" License
18 stars 2 forks source link
coreutils

These intend to follow a derivative of the original UNIX philosophy, with a heavy emphasis on simplicity and straightforwardness.

The iu philosophy can be found here

Installation

You'll need a C compiler with support for the C99 or C11 standard; and the make program. If you're on OS X, BSD, or Linux (or most POSIX systems) you probably already have these, so don't worry yourself.

If you want to be able to run the commands from anywhere, they'll need to be in your PATH environment variable. Thing is, you probably already have a program called cat and ls, etc. in your PATH. So, in order to override those conflicting programs, and use the iu coreutils, place the folder that you compiled the programs in to the beginning of your PATH, not the end.

Programs

cat - sequentially read specified files and output the contents (to stdout by default).

lnum - prepend line numbers to the input. can be used as a filter (e.g. cat file.txt | lnum), can be applied directly to files (lnum file.txt). Chooses stdin by default, when run with no arguments.

ls - lists files in the directories specified. -a option includes hidden files.

Code Base

The code base is simple and easy to understand.

Philosophy

This is the [ 'philosophy' / 'guidelines' / 'rules' / 'regulations' / 'suggestions' ] that iu programs should follow. It is a work in progress.