Created
May 26, 2014 09:19
-
-
Save kennyadsl/c85fb08b7ee9a541c7f4 to your computer and use it in GitHub Desktop.
Simple script to find difference in 3 projects which share same file names
This file contains 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 | |
# change proj_1 proj_2 and proj_3 with real project names | |
# usage: | |
# $ better_diff3 Gemfile.lock | |
# | |
args=("$@") | |
diff3 '~/Code/proj_1/'${args[0]} '~/Code/proj_2/'${args[0]} '~/Code/proj_3/'${args[0]} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment