The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

racknotes - A command line interface to Rackspace Email Notes.

VERSION

version 1.0000

SYNOPSIS

  Usage: racknotes command [arguments]
  
  Available Commands:
      add         add a new note, content is read from stdin
      append      append the content of stdin to the note
      delete      delete the note
      help        show syntax and available commands
      list        lists id and subject of all notes
      replace     replace the contents of the note
      show        show the contents of the note

  # List all of your notes.
  $ racknotes list

  # Delete note number 3.
  $ racknotes delete 3

  # Some commands expect to read text from stdin. You can type some text
  # and then hit <ctrl-d> when you are done.
  $ racknotes add 'some subject'
  blah blah blah
  <ctrl-d>

  # Or you could use pipes or redirection.
  $ echo allo | racknotes add 'adding note via pipe'
  $ racknotes add 'adding note via file redirection' < some_file.txt

DESCRIPTION

This program is a command line tool to interface with Rackspace Email Notes.

COMMANDS

help

Print a brief help message.

add subject

Add a new note with the given subject. The contents of the note will be read from stdin.

append num

Append the content of stdin to the note.

delete num

Delete the note.

list

List all the notes. Each note is numbered so that other commands can refer to them via the number.

replace num

Replace the contents of the note. The new content is read from stdin.

show num

Show the contents of the note.

AUTHOR

Naveed Massjouni <naveedm9@gmail.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2010 by Naveed Massjouni.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.