mirror of
https://github.com/nushell/nushell.git
synced 2024-11-25 09:53:43 +01:00
5ca9e12b7f
* Remove EOL whitespace in files other than docs * Break paragraphs into lines See http://rhodesmill.org/brandon/2012/one-sentence-per-line/ for the rationale * Fix various typos * Remove EOL whitespace in docs/commands/*.md
31 lines
627 B
Markdown
31 lines
627 B
Markdown
# inc
|
|
|
|
This command increments the value of variable by one.
|
|
|
|
## Examples
|
|
|
|
```shell
|
|
> open rustfmt.toml
|
|
━━━━━━━━━
|
|
edition
|
|
─────────
|
|
2018
|
|
━━━━━━━━━
|
|
> open rustfmt.toml | inc edition
|
|
━━━━━━━━━
|
|
edition
|
|
─────────
|
|
2019
|
|
━━━━━━━━━
|
|
```
|
|
|
|
```shell
|
|
> open Cargo.toml | get package.version
|
|
0.1.3
|
|
> open Cargo.toml | inc package.version --major | get package.version
|
|
1.0.0
|
|
> open Cargo.toml | inc package.version --minor | get package.version
|
|
0.2.0
|
|
> open Cargo.toml | inc package.version --patch | get package.version
|
|
0.1.4
|
|
``` |