-
-
Save hmphu/9bb4fc3dbce4b56c737f6de92ffdf9b7 to your computer and use it in GitHub Desktop.
Free Beyond Compare by unlimited trail
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
| 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) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment