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.
jsh/README.md
Ian Adam Naval e0166b98a9 Made package more go-getable.
Based on how the Revel project is organized.
2014-09-04 01:26:15 -04:00

30 lines
658 B
Markdown

jsh
===
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
* 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