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
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,9 +17,11 @@ MAN pages are saved in both plain ("app.1") and GZipped ("app.1.gz") states. Lin
17
17
18
18
## Installation
19
19
20
+
As might be expected, `cargo bashman` requires [`cargo`](https://github.com/rust-lang/cargo). If you don't already have that installed, check out [rustup](https://rustup.rs/) before continuing.
21
+
20
22
Debian and Ubuntu users can just grab the pre-built `.deb` package from the [latest release](https://github.com/Blobfolio/bashman/releases/latest).
21
23
22
-
This application is written in [Rust](https://www.rust-lang.org/) and can alternatively be built from source using [Cargo](https://github.com/rust-lang/cargo):
24
+
To build from source:
23
25
24
26
```bash
25
27
# Clone the source.
@@ -30,7 +32,7 @@ cd bashman
30
32
31
33
# Build as usual. Specify additional flags as desired.
32
34
cargo build \
33
-
--bin bashman \
35
+
--bin cargo-bashman \
34
36
--release
35
37
```
36
38
@@ -52,8 +54,6 @@ cargo bashman [-h/--help]
52
54
53
55
The flags `--no-bash`, `--no-man`, and `--no-credits` can be used to skip the generation of BASH completions, MAN pages, and/or `CREDITS.md` respectively.
54
56
55
-
Note that for the `CREDITS.md` feature, [Cargo](https://github.com/rust-lang/cargo) is explicitly required. (It pulls the dependency tree from the `cargo metadata` output.)
0 commit comments