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
linux/xfce4-terminal Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# xfce4-terminal
> The XFCE4 terminal emulator.
> More information: <https://docs.xfce.org/apps/xfce4-terminal/start>.
- Open a new terminal window:
`xfce4-terminal`
- Set the initial title:
`xfce4-terminal --initial-title "{{initial_title}}"`
- Open a new tab in the current terminal window:
`xfce4-terminal --tab`
- Execute a command in a new terminal window:
`xfce4-terminal --command "{{command_with_args}}"`
- Keep the terminal around after the executed command finishes executing:
`xfce4-terminal --command "{{command_with_args}}" --hold`
- Open multiple new tabs, executing a command in each:
`xfce4-terminal --tab --command "{{command1}}" --tab --command "{{command2}}"`