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/urxvt.md

26 lines
425 B
Markdown
Raw Normal View History

2019-10-02 08:07:21 -07:00
# urxvt
> Rxvt-unicode.
> A customizable terminal emulator.
> More information: <https://manned.org/urxvt>.
2019-10-02 08:07:21 -07:00
- Open a new urxvt window:
`urxvt`
- Run in a specific directory:
`urxvt -cd {{path/to/directory}}`
- Run a command in a new urxvt window:
`urxvt -e {{command}}`
- Run a command and keep the window open:
`urxvt --hold -e {{command}}`
- Run a command within the `sh` shell:
2019-10-02 08:07:21 -07:00
`urxvt -e {{sh}} -c {{command}}`