You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 799 B

12345678910111213141516171819202122232425262728293031323334
  1. # Kosmorro's manpages
  2. This folder contains Kosmorro's manpages.
  3. Two sections are available:
  4. - Section 1: contains the details about the command line usage.
  5. - Section 7: contains the vocabulary used in Kosmorro along with their definitions.
  6. ## How to use it
  7. To open the manpage from section 1, open a terminal and invoke:
  8. ```bash
  9. man kosmorro
  10. ```
  11. If you want to open the vocabulary:
  12. ```bash
  13. man 7 kosmorro
  14. ````
  15. ## `man` complains there's "No manual entry for kosmorro"
  16. Sometimes, especially on Mac, `man` needs to be informed about where the manpages are stored by Python 3. Invoke the following command to do this:
  17. ```bash
  18. echo 'export MANPATH=/usr/local/man:$MANPATH' >> $HOME/.bashrc
  19. ```
  20. And open a new terminal.
  21. NB: if you are not using Bash, change `.bashrc` with the correct file.