mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-10 19:47:03 +00:00
Update cheatsheets
This commit is contained in:
42
tldr/animdl
Normal file
42
tldr/animdl
Normal file
@@ -0,0 +1,42 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# animdl
|
||||
|
||||
> A highly efficient, powerful and fast anime scraper.
|
||||
> See also: `ani-cli`.
|
||||
> More information: <https://github.com/justfoolingaround/animdl>.
|
||||
|
||||
- Download a specific anime:
|
||||
|
||||
`animdl download {{anime_title}}`
|
||||
|
||||
- Download a specific anime by specifying an episode range:
|
||||
|
||||
`animdl download {{anime_title}} {{-r|--range}} {{start_episode}}-{{end_episode}}`
|
||||
|
||||
- Download a specific anime by specifying a download directory:
|
||||
|
||||
`animdl download {{anime_title}} {{-d|--download-dir}} {{path/to/download_directory}}`
|
||||
|
||||
- Grab the stream URL for a specific anime:
|
||||
|
||||
`animdl grab {{anime_title}}`
|
||||
|
||||
- Display the upcoming anime schedule for the next week:
|
||||
|
||||
`animdl schedule`
|
||||
|
||||
- Search a specific anime:
|
||||
|
||||
`animdl search {{anime_title}}`
|
||||
|
||||
- Stream a specific anime:
|
||||
|
||||
`animdl stream {{anime_title}}`
|
||||
|
||||
- Stream the latest episode of a specific anime:
|
||||
|
||||
`animdl stream {{anime_title}} {{-s|--special}} latest`
|
||||
34
tldr/linux/wtype
Normal file
34
tldr/linux/wtype
Normal file
@@ -0,0 +1,34 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# wtype
|
||||
|
||||
> Simulate keyboard input on Wayland, similar to `xdotool type` for X11.
|
||||
> See also: `ydotool`.
|
||||
> More information: <https://github.com/atx/wtype>.
|
||||
|
||||
- Simulate typing text:
|
||||
|
||||
`wtype "{{Hello World}}"`
|
||||
|
||||
- Type a specific key:
|
||||
|
||||
`wtype -k {{Left}}`
|
||||
|
||||
- Press a modifier:
|
||||
|
||||
`wtype -M {{shift|ctrl|...}}`
|
||||
|
||||
- Release a modifier:
|
||||
|
||||
`wtype -m {{ctrl}}`
|
||||
|
||||
- Wait between keystrokes (in milliseconds):
|
||||
|
||||
`wtype -d {{500}} -- "{{text}}"`
|
||||
|
||||
- Read text from `stdin`:
|
||||
|
||||
`echo "{{text}}" | wtype -`
|
||||
@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
# npm fund
|
||||
|
||||
> Retrieve funding information from packages.
|
||||
> More information: <https://docs.npmjs.com/cli/v8/commands/npm-fund>.
|
||||
> More information: <https://docs.npmjs.com/cli/commands/npm-fund>.
|
||||
|
||||
- List dependencies with funding URL for the project in the current directory:
|
||||
|
||||
|
||||
17
tldr/npm-outdated
Normal file
17
tldr/npm-outdated
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# npm-outdated
|
||||
|
||||
> Check for outdated npm package dependencies.
|
||||
> More information: <https://docs.npmjs.com/cli/commands/npm-outdated>.
|
||||
|
||||
- Find packages that are outdated in a project:
|
||||
|
||||
`npm outdated`
|
||||
|
||||
- Find packages that are outdated regardless of the current project:
|
||||
|
||||
`npm outdated --all`
|
||||
@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
# npm query
|
||||
|
||||
> Print an array of dependency objects using CSS-like selectors.
|
||||
> More information: <https://docs.npmjs.com/cli/v8/commands/npm-query>.
|
||||
> More information: <https://docs.npmjs.com/cli/commands/npm-query>.
|
||||
|
||||
- Print direct dependencies:
|
||||
|
||||
@@ -22,7 +22,7 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
|
||||
- Print dependencies with a specific name and within a semantic versioning range:
|
||||
|
||||
`npm query #{{package}}@{{semantic_version}}`
|
||||
`npm query '#{{package}}@{{semantic_version}}'`
|
||||
|
||||
- Print dependencies which have no dependencies:
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
|
||||
# npm run
|
||||
|
||||
> Run a script.
|
||||
> More information: <https://www.npmjs.com>.
|
||||
> More information: <https://docs.npmjs.com/cli/commands/npm-run-script>.
|
||||
|
||||
- Run a script:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user