urxvt
URxvt, short for "rxvt-unicode", is a highly customizable terminal emulator for Unix-like operating systems. It is a command line tool primarily used for running and interacting with command line applications. URxvt is known for its lightweight design and efficient resource usage, making it popular among users who prioritize speed and efficiency. It supports a variety of display features, including Unicode characters, transparency, and multiple font support. URxvt's appearance and behavior can be extensively customized by editing its configuration file, allowing users to create a personalized terminal environment. It is also highly extensible and supports various plugins and scripts for adding additional functionality. URxvt has become a go-to choice for many Linux users seeking a fast and customizable terminal emulator.
List of commands for urxvt:
-
urxvt:tldr:21b39 urxvt: Run a command and keep the window open.$ urxvt --hold -e ${command}try on your machineexplain this command
-
urxvt:tldr:37d47 urxvt: Run a command in a new urxvt window.$ urxvt -e ${command}try on your machineexplain this command
-
urxvt:tldr:b5565 urxvt: Run a command within the `sh` shell.$ urxvt -e ${sh} -c ${command}try on your machineexplain this command
-
urxvt:tldr:ddabd urxvt: Run in a specific directory.$ urxvt -cd ${path-to-directory}try on your machineexplain this command