You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+20-19
Original file line number
Diff line number
Diff line change
@@ -18,21 +18,32 @@ This repository is the spiritual successor to my previous [sysadmin-utils reposi
18
18
19
19
The idea here is to collect simple utilities and package them as a single binary, written in go, in a similar fashion to the `busybox` utility.
20
20
21
+
22
+
23
+
21
24
## Installation
22
25
23
26
Installation upon a system which already contains a go-compiler should be as simple as:
24
27
25
28
```
29
+
$ go install github.com/skx/sysbox@latest
30
+
```
31
+
32
+
If you've cloned [this repository](https://github.com/skx/sysbox) then the following will suffice:
26
33
27
-
$ GO111MODULE=on go get github.com/skx/sysbox
28
34
```
35
+
$ go build .
36
+
$ go install .
37
+
```
38
+
39
+
Finally may find binary releases for various systems upon our [download page](https://github.com/skx/sysbox/releases).
40
+
29
41
30
-
If you prefer you can find binary releases upon our [download page](https://github.com/skx/sysbox/releases).
31
42
32
43
33
44
## Bash Completion
34
45
35
-
The [subcommand library](https://github.com/skx/subcommands) this application uses has integrated support for the generation of bash completion scripts.
46
+
The [subcommand library](https://github.com/skx/subcommands) this application uses has integrated support for the generation of a completion script for the bash shell.
36
47
37
48
To enable this add the following to your bash configuration-file:
This application is built, and distributed, as a single-binary named`sysbox`, which implements a number of sub-commands.
60
+
This application is built, and distributed, as a single-binary named`sysbox`, which implements a number of sub-commands.
48
61
49
62
You can either run the tools individually, taking advantage of the [bash completion](#bash-completion) support to complete the subcommands and their arguments:
50
63
@@ -53,13 +66,10 @@ You can either run the tools individually, taking advantage of the [bash complet
53
66
54
67
Or you can create symlinks to allow specific tool to be executed without the need to specify a subcommand:
55
68
56
-
$ ln -s sysbox foo
57
-
$ foo ..
58
-
59
-
This process of creating symlinks can be automated via the use of the `sysbox install` sub-command, which would allow you to install the tools globally like so:
69
+
$ ln -s $(which sysbox) /usr/local/bin/calc
70
+
$ /usr/local/bin/calc '3 * 3'
71
+
9
60
72
61
-
$ go get github.com/skx/sysbox
62
-
$ $GOPATH/bin/sysbox install -binary $GOPATH/bin/sysbox -directory /usr/local/bin | sudo sh
63
73
64
74
65
75
@@ -229,15 +239,6 @@ A simple HTTP-server. Allows serving to localhost, or to the local LAN.
229
239
Very much "curl-lite", allows you to fetch the contents of a remote URL. SSL errors, etc, are handled, but only minimal options are supported.
230
240
231
241
232
-
## install
233
-
234
-
This command allows you to install symlinks to the sysbox-binary, for ease of use:
235
-
236
-
```
237
-
$ sysbox install -binary=$(pwd)/sysbox -directory=~/bin | sh
238
-
```
239
-
240
-
241
242
## ips
242
243
243
244
This tool lets you easily retrieve a list of local, or global, IPv4 and
0 commit comments