Skip to content

Commit 8901fa1

Browse files
Remove $ signs from the bash script to allow for copy pasting (#106)
1 parent ef54f2c commit 8901fa1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Download the a pre-built release from the [releases](https://github.com/bytecode
7171
Alternatively you can install via `cargo`:
7272

7373
```shell-session
74-
$ cargo install wizer --all-features
74+
cargo install wizer --all-features
7575
```
7676

7777
## Example Usage
@@ -91,7 +91,7 @@ For a complete C++ example, see [this](https://github.com/bytecodealliance/wizer
9191
Then, if your Wasm module is named `input.wasm`, run the `wizer` CLI:
9292

9393
```shell-session
94-
$ wizer input.wasm -o initialized.wasm
94+
wizer input.wasm -o initialized.wasm
9595
```
9696

9797
Now you have a pre-initialized version of your Wasm module at
@@ -100,7 +100,7 @@ Now you have a pre-initialized version of your Wasm module at
100100
More details, flags, and options can be found via `--help`:
101101

102102
```shell-session
103-
$ wizer --help
103+
wizer --help
104104
```
105105

106106
## Caveats

0 commit comments

Comments
 (0)