1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/st.md

25 lines
476 B
Markdown
Raw Normal View History

2021-09-06 02:00:08 -07:00
# st
> A simple terminal emulator for the X Window System.
> More information: <https://st.suckless.org>.
- Open a terminal:
`st`
- Open a terminal with a specific title:
`st -T {{title}}`
- Open a terminal, execute a given command, and write the output to a file:
`st -o {{path/to/file}} -e {{command argument1 argument2}}`
- Increase/decrease the font size:
`<Ctrl> + <Shift> + {{Page Up|Page Down}}`
2021-09-06 02:00:08 -07:00
- Copy/paste from the clipboard:
`<Ctrl> + <Shift> + {{C|V}}`