mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
42 lines
792 B
Plaintext
42 lines
792 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# ya
|
|
|
|
> Manage Yazi plugins and flavors, publish or subscribe to DDS messages.
|
|
> More information: <https://yazi-rs.github.io/docs/cli>.
|
|
|
|
- Add a package:
|
|
|
|
`ya pkg add {{package}}`
|
|
|
|
- Delete a package:
|
|
|
|
`ya pkg delete {{package}}`
|
|
|
|
- Upgrade all packages:
|
|
|
|
`ya pkg upgrade`
|
|
|
|
- List all packages:
|
|
|
|
`ya pkg list`
|
|
|
|
- Emit a command to be executed by the current instance:
|
|
|
|
`ya emit {{command}} {{arguments}}`
|
|
|
|
- Emit commands to a specific remote instance:
|
|
|
|
`ya emit-to {{receiver}} {{command}} {{arguments}}`
|
|
|
|
- Publish a message to the current instance with string body:
|
|
|
|
`ya pub --str {{string_message}}`
|
|
|
|
- Subscribe to a specific kind of message from a remote instance:
|
|
|
|
`ya sub {{message_kind}}`
|