#!/bin/sh curl http://dotfiles.org/~samba/dotfiles | while read i do echo "Syncing ${i}" >&2 curl http://dotfiles.org/~samba/${i} > ${HOME}/${i} done