#!/bin/sh
for F in `cat tape-files`; do
	if [ -f $F ]; then
		if  cmp -s  $F ../X-remote.org/$F 2>/dev/null; then
			echo "\c"
		else
			echo $F
		fi
	fi
done