dot_files/dot_oh-my-zsh/custom/work.zsh
2026-02-13 16:30:10 +00:00

17 lines
681 B
Bash

# Work - Meta-specific aliases and functions
# Auto-loaded by oh-my-zsh from $ZSH_CUSTOM/
# ============================================================================
# On-demand VMs
# ============================================================================
# Connect to first available ondemand machine via et
svmo() {
et $(ondemand list -q | head -n 2 | tail -n 1 | awk '{print $1}')
}
# ============================================================================
# Build & deploy
# ============================================================================
alias arcb="arc build"
alias arcc="conf canary start"
alias arccc='conf canary cancel --hostname $HOSTNAME'