backups management. Some UX improvements
[bash-notes.git] / SOURCE / CORE / helpers.sh
CommitLineData
fb711183 1# check if input is a number, returns false or the number itself
2function check_noteID() {
3 IN=$1
4 case $IN in
5 ''|*[!0-9]*)
6 return 1
7 ;;
8 *)
9 echo "$IN"
10 ;;
11 esac
12}
13
14function helptext() {
15 echo "Usage:"
efa3e607 16 echo " $0 [PARAMS] [note ID]..."
fb711183 17 echo ""
18 echo "${BASENAME} parameters are:"
9eb02251 19 echo -e " -h | --help\t\t\t: This help text"
20 echo -e " -p | --plain\t\t\t: Output is in plain text"
21 echo -e "\t\t\t\t (without this option the output is formatted)"
22 echo -e "\t\t\t\t (this option must precede all others)"
23 echo -e " -l | --list\t\t\t: List existing notes"
3951cc3d 24 echo -e " -a | --add=[\"<title>\"]\t: Add new note"
25 echo -e " -e | --edit=[<note>]\t\t: Edit note"
26 echo -e " -d | --delete=[<note> | all] : Delete single note or all notes at once"
27 echo -e " -s | --show=[<note>]\t\t: Display note using your favourite PAGER"
28 echo -e " -r | --restore=[<dir>]\t: Restore a previous backup from dir"
9eb02251 29 echo -e " -v | --version\t\t: Print version"
30 echo -e " --userconf\t\t\t: Export User config file"
31 echo -e " --backup [<dest>]\t\t: Backup your data in your destination folder"
fb711183 32 echo ""
efa3e607 33 echo -e "if a non option is passed and is a valid note ID, the note will be displayed."
fb711183 34}
9eb02251 35
3951cc3d 36function configtext() {
37 cat << __NOWCONF__
38${BASENAME} configuration is:
39
40base directory: ${BASEDIR}/
41notes archive: ${NOTESDIR}/
42notes database: ${DB}
43rc file: $RCFILE
44debug file: /tmp/debug_bash-note.log
45
46text editor: ${EDITOR}
47terminal: ${TERMINAL}
48jq executable: ${JQ}
49PAGER: ${PAGER}
50__NOWCONF__
51
52}
53