diff --git a/zsh/.config/zsh/.zshrc b/zsh/.config/zsh/.zshrc index ffacdb0..126c9d4 100644 --- a/zsh/.config/zsh/.zshrc +++ b/zsh/.config/zsh/.zshrc @@ -116,6 +116,12 @@ function pasters() { # Ensure we can make cheap copies on btrfs alias cp='cp --reflink=auto' +function pullall() { + for repo in "$@"; do + echo "$repo" + done | xargs -P0 -I{} git -C {} pull +} + if (( $+commands[thefuck] )) then alias fuck='$(thefuck $(fc -ln -1))'