.notes

A CRUD note library. It will make a directory .notes in your HOME. You can create, read, update and destroy notes using your terminal.

Installation

Install it yourself as:

$ gem install dotnotes

Usage

note new {filename}    # Create a new note with filename
note show {filename}   # Display a note
note edit {filename}   # Edit a note
note delete {filename} # Delete a note
note list              # List all notes
note find {keyword}    # Check which files contain the keyword
note help              # Display this help

Contributing

  1. Fork it ( https://github.com/radubogdan/dotnotes/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request