Minimal tldr command line client in plain C99.
- Never gets in the way.
- Displays a page in ~12 ms.
srcery - terminal colorscheme on the screenshot.
Satisfy the dependencies first, and then:
git clone https://github.com/kovmir/tinytldr.git
cd tinytldr
# Optional: Adjust ./config.h to your linking.
make
sudo make installtldr -u # Fetch or update pages.
tldr cd# View 'cd' page.
tldr -p windows scoop # One could specify a platform.
tldr git apply # View git-apply.mdThis implementation does not support tldr-pages client specification, as it makes clients identical for no reason and goes against the minimalist approach of this project.
- Linux
- BSD
Q: Can I use it to display my personal pages?
A: Yes, you can.
TLDR_PAGES="$HOME/.local/share/tinytldr/pages"
mkdir "$TLDR_PAGES/mypages"echo'# My custom page'>"$TLDR_PAGES/mypages/testpage.md"
tldr testpageThanks @bilditup1 for code contributions.
When submitting PRs, please maintain the coding style used for the project.
