This repository has been archived on 2015-04-29. You can view files and clone it, but cannot push or open issues or pull requests.
Fredric Silberberg f21df51bd2 Added the PATH searching algorithm we talked about at the last meeting with Ciaraldi. It will find the location of our program
and search the PATH for that location. If found, it will search all remaining elements for the requested program. If the location
is not found on the PATH, then it will search the entire PATH for the requested program. If found, it returns the absolute path
to the program. If not, err.
2014-09-24 23:32:11 -04:00
2014-09-16 22:08:12 -04:00
2014-09-04 02:49:55 -04:00
2014-09-16 20:52:57 -04:00
2014-09-16 20:51:52 -04:00
2014-09-04 01:26:15 -04:00
2014-09-10 14:12:25 -04:00

jsh

build status

An augmented Unix userland. Makes your core utility functions a bit cooler by adding a --json flag that makes everything output in nice, serialized JSON.

Assumptions

  • You have the following binaries (usually found in your distro's coreutils packages)
    • /usr/bin/ps
    • /usr/bin/free
  • You have Go installed

We're working on making it so that they don't have to be in those directories.

Installing

  • git clone this directory
  • If you didn't clone into your GOPATH, symlink the clone directory into $GOPATH/src

ps

  • $ go install jsh/ps
  • $ $GOPATH/bin/ps

You may want to prepend your path with $GOPATH/bin:

export PATH=$GOPATH/bin:$PATH

free

  • $ go install jsh/free
  • $ $GOPATH/bin/free
Description
No description provided
Readme 0 B
Languages
Go 92.5%
Makefile 7.5%