Initial commit

This commit is contained in:
2024-02-21 13:18:38 +02:00
commit 4e88a1b42f
7 changed files with 218 additions and 0 deletions

36
.github/README.md vendored Normal file
View File

@@ -0,0 +1,36 @@
# ivuorinen/cheatsheet-tldr
This repository is a collection of [cheat/cheat](https://github.com/cheat/cheat)
compatible cheatsheets derived from [tldr](https://github.com/tldr-pages/tldr) pages.
## Installation
Add the cheatsheets to your `cheat` installation by cloning this repository to
`~/.cheat/cheatsheets/tldr`:
```sh
git clone https://github.com/ivuorinen/cheatsheet-tldr.git ~/.cheat/cheatsheets/tldr
```
Configure your `cheat.yaml` to include the cheatsheets:
```yaml
- name: tldr
path: ~/.cheat/cheatsheets/tldr
tags: [tldr]
readonly: true
```
## Usage
Use `cheat` as you normally would, but include the `tldr` tag to filter the
cheatsheets:
```sh
cheat --tags tldr
```
## License
Files under `.github/` are licensed under the [MIT License](LICENSE.md).
TLDR pages licensed under [CC-BY-4.0](https://github.com/tldr-pages/tldr/blob/main/LICENSE.md).