-
-
Save hmphu/9bb4fc3dbce4b56c737f6de92ffdf9b7 to your computer and use it in GitHub Desktop.
Revisions
-
njleonzhang revised this gist
Feb 27, 2017 . 1 changed file with 1 addition and 1 deletion.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 @@ -24,7 +24,7 @@ fi 5 . make `BCompare` executable. ``` chmod +x BCompare ``` refer to: -
njleonzhang revised this gist
Aug 20, 2016 . 1 changed file with 5 additions and 5 deletions.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 @@ -1,18 +1,18 @@ 1 . goto `beyond compare` folder ``` cd "/Applications/Beyond Compare.app/Contents/MacOS/" ``` 2 . rename `BCompare` to `BCompare.real` ``` mv BCompare BCompare.real ``` 3 . new a file named BCompare ``` touch BCompare ``` 4 . write following code into `BCompare` ``` #! /bin/bash if [ -f $HOME/Library/Application\ Support/Beyond\ Compare/registry.dat ] @@ -22,7 +22,7 @@ fi "/Applications/Beyond Compare.app/Contents/MacOS/BCompare.real" & ``` 5 . make `BCompare` executable. ``` chmond +x BCompare ``` -
njleonzhang renamed this gist
Aug 20, 2016 . 1 changed file with 1 addition and 1 deletion.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 @@ -28,4 +28,4 @@ chmond +x BCompare ``` refer to: [beyond-compare-4-for-mac-unlimited](http://tutandtips.blogspot.com/2015/10/beyond-compare-4-for-mac-unlimited.html) -
njleonzhang revised this gist
Aug 20, 2016 . 1 changed file with 1 addition and 1 deletion.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 @@ -28,4 +28,4 @@ chmond +x BCompare ``` refer to: [](http://tutandtips.blogspot.com/2015/10/beyond-compare-4-for-mac-unlimited.html) -
njleonzhang created this gist
Aug 20, 2016 .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,31 @@ 1. goto `beyond compare` folder ``` cd "/Applications/Beyond Compare.app/Contents/MacOS/" ``` 2. rename `BCompare` to `BCompare.real` ``` mv BCompare BCompare.real ``` 3. new a file named BCompare ``` touch BCompare ``` 4. write following code into `BCompare` ``` #! /bin/bash if [ -f $HOME/Library/Application\ Support/Beyond\ Compare/registry.dat ] then rm $HOME/Library/Application\ Support/Beyond\ Compare/registry.dat fi "/Applications/Beyond Compare.app/Contents/MacOS/BCompare.real" & ``` 5. make `BCompare` executable. ``` chmond +x BCompare ``` refer to: http://tutandtips.blogspot.com/2015/10/beyond-compare-4-for-mac-unlimited.html