zsh/mercurial.zsh @ 8ac636ddb389

zsh: mdown() styles
author Steve Losh <steve@dwaiter.com>
date Fri, 30 Jul 2010 14:01:00 -0400
parents 7cfce5fd0b3c
children (none)
#!/usr/bin/env zsh

function pull_everything() {
    for repo in $( ls -1 ); do
        if [[ -d $repo && -d $repo/.hg ]]; then
            echo "Pulling" $repo
            hg -R $repo pull -u
            echo
        fi
    done
}