|
@@ -1,6 +1,8 @@
|
1
|
1
|
jsh
|
2
|
2
|
===
|
3
|
3
|
|
|
4
|
+[](https://ci.ianonavy.com/projects/1?ref=master)
|
|
5
|
+
|
4
|
6
|
An augmented Unix userland. Makes your core utility functions a bit cooler by
|
5
|
7
|
adding a --json flag that makes everything output in nice, serialized JSON.
|
6
|
8
|
|
|
@@ -9,6 +11,7 @@ adding a --json flag that makes everything output in nice, serialized JSON.
|
9
|
11
|
* You have the following binaries (usually found in your distro's coreutils
|
10
|
12
|
packages)
|
11
|
13
|
* /usr/bin/ps
|
|
14
|
+ * /usr/bin/free
|
12
|
15
|
* You have Go installed
|
13
|
16
|
|
14
|
17
|
We're working on making it so that they don't have to be in those directories.
|
|
@@ -24,6 +27,12 @@ We're working on making it so that they don't have to be in those directories.
|
24
|
27
|
* $ go install jsh/ps
|
25
|
28
|
* $ $GOPATH/bin/ps
|
26
|
29
|
|
|
30
|
+
|
27
|
31
|
You may want to prepend your path with $GOPATH/bin:
|
28
|
32
|
|
29
|
33
|
export PATH=$GOPATH/bin:$PATH
|
|
34
|
+
|
|
35
|
+### free
|
|
36
|
+
|
|
37
|
+* $ go install jsh/free
|
|
38
|
+* $ $GOPATH/bin/free
|