#!/bin/sh for x in *.html; do if ( diff $x "$x"bak>/dev/null); then echo $x; mv "$x"bak $x fi done