Project

dotnotes

0.0
No commit activity in last 3 years
No release in over 3 years
Simple CLI Application to create and edit notes directly from terminal.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 1.7
~> 10.0
 Project Readme

.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