Skip to content

Commit 14e5560

Browse files
authored
Removed the install subcommand (#36)
Once removed I had to update the README.md file to clean it up a little and remove references to the usage.
1 parent d39dc12 commit 14e5560

File tree

3 files changed

+20
-121
lines changed

3 files changed

+20
-121
lines changed

README.md

+20-19
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,32 @@ This repository is the spiritual successor to my previous [sysadmin-utils reposi
1818

1919
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.
2020

21+
22+
23+
2124
## Installation
2225

2326
Installation upon a system which already contains a go-compiler should be as simple as:
2427

2528
```
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:
2633

27-
$ GO111MODULE=on go get github.com/skx/sysbox
2834
```
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+
2941

30-
If you prefer you can find binary releases upon our [download page](https://github.com/skx/sysbox/releases).
3142

3243

3344
## Bash Completion
3445

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.
3647

3748
To enable this add the following to your bash configuration-file:
3849

@@ -42,9 +53,11 @@ source <(sysbox bash-completion)
4253
```
4354

4455

56+
57+
4558
# Overview
4659

47-
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.
4861

4962
You can either run the tools individually, taking advantage of the [bash completion](#bash-completion) support to complete the subcommands and their arguments:
5063

@@ -53,13 +66,10 @@ You can either run the tools individually, taking advantage of the [bash complet
5366

5467
Or you can create symlinks to allow specific tool to be executed without the need to specify a subcommand:
5568

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
6072

61-
$ go get github.com/skx/sysbox
62-
$ $GOPATH/bin/sysbox install -binary $GOPATH/bin/sysbox -directory /usr/local/bin | sudo sh
6373

6474

6575

@@ -229,15 +239,6 @@ A simple HTTP-server. Allows serving to localhost, or to the local LAN.
229239
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.
230240

231241

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-
241242
## ips
242243

243244
This tool lets you easily retrieve a list of local, or global, IPv4 and

cmd_install.go

-101
This file was deleted.

main.go

-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ func main() {
4848
subcommands.Register(&html2TextCommand{})
4949
subcommands.Register(&httpdCommand{})
5050
subcommands.Register(&httpGetCommand{})
51-
subcommands.Register(&installCommand{})
5251
subcommands.Register(&ipsCommand{})
5352
subcommands.Register(&markdownTOCCommand{})
5453
subcommands.Register(&passwordCommand{})

0 commit comments

Comments
 (0)