Merge pull request #795 from chhetripradeep/pchhetri/inc

Add documentation for the inc command
This commit is contained in:
Jonathan Turner 2019-10-07 04:35:08 +11:00 committed by GitHub
commit 8a6a688131
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

31
docs/commands/inc.md Normal file
View File

@ -0,0 +1,31 @@
# 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
```