From b60e7403c12d7c4102cb8fd8d7c57a20fd0413b7 Mon Sep 17 00:00:00 2001 From: Alone Date: Wed, 2 Oct 2019 08:07:21 -0700 Subject: [PATCH] urxvt: add page (#3294) --- pages/linux/urxvt.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/linux/urxvt.md diff --git a/pages/linux/urxvt.md b/pages/linux/urxvt.md new file mode 100644 index 0000000000..e6ff311cad --- /dev/null +++ b/pages/linux/urxvt.md @@ -0,0 +1,24 @@ +# urxvt + +> Rxvt-unicode. +> A customizable terminal emulator. + +- 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}}`