# note-rs
[](http://crates.io/crates/note-rs)
[](https://travis-ci.org/robatipoor/note-rs)
[](https://ci.appveyor.com/project/robatipoor/note-rs)
[](LICENSE)
note in command line
**install**
```sh
cargo install note-rs
```
**Build and install**
```sh
# build and install note-rs
git clone https://github.com/robatipoor/note-rs \
&& cd note-rs \
&& make
```
**Build dependency**
git, rustc, cargo, gnu make, binutils, upx
**run**
```sh
# write note
$ note-rs hello
# read all note
$ note-rs
# read line 1
$ note-rs -r 1
# read line 1 until the 10
$ note-rs -r 1..10
# delete note line 2
$ note-rs -d 2
```