Это простейшее CLI приложение для создания заметок.
Использование:
-
Добавить заметку:
./note.exe -a <title> <content>./note.exe --add <title> <content> -
Показать заметку с конкретным id:
./note.exe -r <id>./note.exe --read <id> -
Показать все заметки:
./note.exe -rall./note.exe --read-all -
Обновить заметку:
./note.exe -u <id> <title> <content>./note.exe --update <id> <title> <content> -
Обновить title заметки:
./note.exe -ut <id> <title>./note.exe --update-title <id> <title> -
Обновить content заметки:
./note.exe -uc <id> <content>./note.exe --update-content <id> <content> -
Удалить заметку с конкретным id:
./note.exe -d <id>./note.exe --delete <id> -
Помощь:
./note.exe -h./note.exe --help