Created
August 7, 2025 18:37
-
-
Save alecjacobson/0020bf26df046e3d75ea1fa55860cf44 to your computer and use it in GitHub Desktop.
Revisions
-
alecjacobson created this gist
Aug 7, 2025 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ #!/bin/sh # https://stackoverflow.com/questions/13719122/how-to-use-opendiff-as-default-mergetool/36841553#36841553 # https://apple.stackexchange.com/questions/476348/use-apples-filemerge-from-command-line-and-have-it-wait-instead-of-exiting-imme file1=$(readlink -f "$1") file2=$(readlink -f "$2") open -a FileMerge -n -W --args -left "$file1" -right "$file2"