diff options
-rw-r--r-- | README.md | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/README.md b/README.md index eb6ada3..50e4fe2 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Command-line community notice board. Post simple notes for other users to see. ## Features * Username is tagged based on the executing user -* Shows the 30 most recent posts in descending order +* Shows the 15 most recent posts in descending order * Able to go back and edit your own posts * Title <= 30 chars * Body <= 500 chars @@ -44,6 +44,11 @@ $ sudo make install Issuing the program name itself will list the currently available posts, like in the screenshot above. +To display the 15 most recent posts: +``` +$ clinte +``` + To make a new post: ``` @@ -62,6 +67,12 @@ $ clinte update then you will be asked for the new title and body after being shown the previous title and body. +To delete a post: +``` +$ clinte delete +``` +Then `clinte` asks for the numeric ID of the post to delete. + ## Contributing This is very new, so feel free to hack on it in any way you |