Update cheatsheets

This commit is contained in:
ivuorinen
2024-08-28 00:15:37 +00:00
parent 4f0d9efa90
commit 498596c46b
6 changed files with 119 additions and 9 deletions

21
tldr/linux/flatpak-run Normal file
View File

@@ -0,0 +1,21 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# flatpak run
> Run flatpak applications and runtimes.
> More information: <https://docs.flatpak.org/en/latest/flatpak-command-reference.html#flatpak-run>.
- Run an installed application:
`flatpak run {{com.example.app}}`
- Run an installed application from a specific branch e.g. stable, beta, master:
`flatpak run --branch={{stable|beta|master|...}} {{com.example.app}}`
- Run an interactive shell inside a flatpak:
`flatpak run --command={{sh}} {{com.example.app}}`