#!/bin/sh
for configfile in "$HOME"/.fetchyahoorc*
do
	if [ -f "$configfile" ]; then
		fetchyahoo --configfile="$configfile"
	else
		:
	fi
done
