HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

urxvt — Rxvt-unicode. A customizable terminal emulator. More information: <https://manned.org/urxvt>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
terminalcommandrxvtcustomizableurxvtcliemulatorunicode
linux

Problem

How to use the urxvt command: Rxvt-unicode. A customizable terminal emulator. More information: <https://manned.org/urxvt>.

Solution

urxvt — Rxvt-unicode. A customizable terminal emulator. More information: <https://manned.org/urxvt>.

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:
urxvt -e {{sh}} -c {{command}}

Code Snippets

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

urxvt -e {{sh}} -c {{command}}

Context

tldr-pages: linux/urxvt

Revisions (0)

No revisions yet.