Items that load information
--help
man
info
tldr
Main ones I would be looking for are --help & man.
I have looked this up and I saw someone mention you can pipe the information, I also saw someone mention you could actually load into your web browser which I did not try yet. I also saw there are programs spefically for loading man pages, but again would prefer one of the two text editors I already have.
So far I was able to pass the manual & help for the ls command into a text file, for example
Code: Select all
man ls > /tmp/man.txt && featherpad /tmp/man.txt
Code: Select all
ls --help > /tmp/help.txt && featherpad /tmp/help.txt
Thank you for any suggestions