#!/bin/sh
ssh git.alt task ls \
	| grep FAIL \
	| sed 's/ FAIL.*//' \
	| sed 's/#//' \
	| xargs -n1 ssh git.alt task run

