nushell/docs/commands/inc.md
Waldir Pimenta 5ca9e12b7f
Fix whitespace and typos (#1481)
* 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
2020-03-14 06:23:41 +13:00

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
```