1 2 3 4 5 6 7 8 9
#!/bin/sh set -xe terms="alacritty st xterm" for term in ${terms}; do command -v "${term}" && exec "${term}" done