This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# In honor of Dennis Ritchie, I present my directory diff'ing | |
# script built on the piping magic of Unix. | |
# | |
# Usage: diffdir dir1 dir2 | |
set -e # Bomb out of the script on any errors | |
diff_directories() { |