Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

33
licensor Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# licensor
> Write licenses to `stdout`.
> More information: <https://github.com/raftario/licensor>.
- Write the MIT license to a file named `LICENSE`:
`licensor {{MIT}} > {{LICENSE}}`
- Write the MIT license with a [p]laceholder copyright notice to a file named `LICENSE`:
`licensor -p {{MIT}} > {{LICENSE}}`
- Specify a copyright holder named Bobby Tables:
`licensor {{MIT}} {{"Bobby Tables"}} > {{LICENSE}}`
- Specify licence exceptions with a WITH expression:
`licensor "{{Apache-2.0 WITH LLVM-exception}}" > {{LICENSE}}`
- List all available licenses:
`licensor --licenses`
- List all available exceptions:
`licensor --exceptions`