diff options
Diffstat (limited to 'sh/sb')
-rwxr-xr-x | sh/sb | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3,7 +3,8 @@ case "$1" in # also run commands in current Master computer - '-m') shift; "$@";; + # I use `eval "$*"` instead of just a "$@" here because passing clis to ssh sometimes requires weird quotes like `sb -m 'echo a; echo b'` and I want examples like this to work + '-m') shift; eval "$*";; esac for branch in $(git -C "$HOME/programs/config_local_arch" branch | awk '!/master/{print ($1=="*")?$2:$1}'); do |