#!/bin/bash

for i in `hg paths |  cut -f 1 -d = -`; do
    hg incoming $i
done
