Skip to content

Instantly share code, notes, and snippets.

@MatthaeusHarris
Created January 13, 2012 21:59
Show Gist options
  • Save MatthaeusHarris/1608927 to your computer and use it in GitHub Desktop.
Save MatthaeusHarris/1608927 to your computer and use it in GitHub Desktop.
#!/bin/bash
for f in $(find jpm/cloud0/ -type f)
do
if [ -e `echo $f | sed 's/^jpm\/cloud0/jpm\/cloud1/'` ]
then
#echo "Testing $f" >&2
diff $f `echo $f | sed 's/^jpm\/cloud0/jpm\/cloud1/'`
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment