From 5d73b697ae232de6fc3f7eccaf77d9b29c1125e1 Mon Sep 17 00:00:00 2001 From: Jon-William Lewis Date: Tue, 16 Feb 2016 10:49:51 -0600 Subject: [PATCH] Changed help information to alphabetical order --- README.md | 4 ++-- src/includes/help.sns.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d498edf..cb39c8a 100644 --- a/README.md +++ b/README.md @@ -23,9 +23,9 @@ was almost entirely rewritten as SNSv2. -d | --delete : Delete note -e | --edit : Open note for editing -h | --help : Display this message - -p | --print : Print note to console - -l | --list : List all notes in NOTEBOOK -i | --init : Write default config and initalize SNS store" + -l | --list : List all notes in NOTEBOOK + -p | --print : Print note to console ## Installing To install, place `sns.sh` in your path, and copy `src/bash-completion/sns` diff --git a/src/includes/help.sns.sh b/src/includes/help.sns.sh index 8ded293..ff15469 100644 --- a/src/includes/help.sns.sh +++ b/src/includes/help.sns.sh @@ -6,8 +6,8 @@ function help { printf "\n%s" " -d | --delete : Delete note" printf "\n%s" " -e | --edit : Open note for editing" printf "\n%s" " -h | --help : Display this message" - printf "\n%s" " -p | --print : Print note to console" - printf "\n%s" " -l | --list : List all notes in NOTEBOOK" printf "\n%s" " -i | --init : Write default config and initalize SNS store" + printf "\n%s" " -l | --list : List all notes in NOTEBOOK" + printf "\n%s" " -p | --print : Print note to console" printf "\n" }