note.1 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. .TH note V1.0
  2. .SH NAME
  3. note - A simple command-line note taking application
  4. .SH SYNOPSIS
  5. .B note
  6. .RB [options] [filename/s]
  7. .SH DESCRIPTION
  8. note is a simple command\-line based note\-taking application.
  9. .P
  10. Notes are saved in the directory /home/user/.note/notes/
  11. .P
  12. Configuration options are saved in /home/user/.note/settings.cfg
  13. .P
  14. Configuration settings can be changed by manually editing /home/user/.note/settings.cfg or by running note's configuration script
  15. .BR notesettings (1)
  16. .SH USAGE
  17. .TP
  18. .B note
  19. .BR
  20. Lists all notes in the users notes directory (/home/user/.note/notes/)
  21. .TP
  22. .B note {file\-name}
  23. .BR
  24. Create a new note, or open an existing one in the text editor
  25. .TP
  26. .B note \-r {old\-file\-name} {new\-file\-name}
  27. .BR
  28. Rename an existing file
  29. .TP
  30. .B note \-d {filename1} {filename2} ...
  31. .BR
  32. Deletes all files listed after the \-d command
  33. .TP
  34. .B note \-la
  35. .BR
  36. Displays a detailed list of notes, sorted alphabetically
  37. .TP
  38. .B note \-ls
  39. .BR
  40. Displays a detailed list of notes, sorted by size
  41. .TP
  42. .B note \-v {filename}
  43. Opens the specified note in the pager/viewer application {default pager is less} see man-page for note configuration script
  44. .BR notesettings (1)
  45. to see how to change the default pager.
  46. .TP
  47. .B note -R {file1} {file2} {...}
  48. .BR
  49. Read notes aloud via espeak
  50. .TP
  51. .B note --backup
  52. .BR
  53. Back-up all notes and configuration - Creates a file in the users home directory called note-backup-YYYY-MM-DD.tar.gz - where YYYY-MM-DD is todays date (year, month, day)
  54. .TP
  55. .B note -s word
  56. .BR
  57. List notes containing "word" (case insensitive)
  58. .TP
  59. .B note -S word
  60. .BR
  61. List notes containing "word" (case sensitive)
  62. .TP
  63. .B note \-h
  64. .BR
  65. Displays help
  66. .SH SEE ALSO
  67. .BR notesettings (1)
  68. .SH LICENCE
  69. note is licensed under the GNU GPLV3 license.
  70. .TP
  71. This man page is licensed under the GNU FDL (Free documentation license) v1.3.
  72. Permission is granted to copy, distribute and/or modify this document
  73. under the terms of the GNU Free Documentation License, Version 1.3
  74. or any later version published by the Free Software Foundation;
  75. with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
  76. A copy of the license is included in the section entitled "GNU
  77. Free Documentation License".
  78. .SH COPYRIGHT
  79. .B ©2013-2023
  80. Jason Trunks < https://notabug.org/JasKinasis/note >
  81. .BR