Your Most Commonly Used Terminal Commands

I’m making a runner script to automate commands, snippets, net searches from dom0.

Add your most commonly used terminal commands and hotstrings to the dictionary below, and I’ll post the final script when it’s done.


# Define your dom0 command hotstrings and commands.
# Hotstring = key, value=command

declare -A commands_hotstrings
commands_hotstrings=(
    ['sda']='qvm-shutdown --all --exclude sys-usb'
)
1 Like