Skip to content

Instantly share code, notes, and snippets.

@hmphu
Forked from njleonzhang/Free_Beyond_Compare.md
Created January 4, 2024 16:44
Show Gist options
  • Save hmphu/9bb4fc3dbce4b56c737f6de92ffdf9b7 to your computer and use it in GitHub Desktop.
Save hmphu/9bb4fc3dbce4b56c737f6de92ffdf9b7 to your computer and use it in GitHub Desktop.

Revisions

  1. @njleonzhang njleonzhang revised this gist Feb 27, 2017. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Free_Beyond_Compare.md
    Original file line number Diff line number Diff line change
    @@ -24,7 +24,7 @@ fi

    5 . make `BCompare` executable.
    ```
    chmond +x BCompare
    chmod +x BCompare
    ```

    refer to:
  2. @njleonzhang njleonzhang revised this gist Aug 20, 2016. 1 changed file with 5 additions and 5 deletions.
    10 changes: 5 additions & 5 deletions Free_Beyond_Compare.md
    Original file line number Diff line number Diff line change
    @@ -1,18 +1,18 @@
    1. goto `beyond compare` folder
    1 . goto `beyond compare` folder
    ```
    cd "/Applications/Beyond Compare.app/Contents/MacOS/"
    ```

    2. rename `BCompare` to `BCompare.real`
    2 . rename `BCompare` to `BCompare.real`
    ```
    mv BCompare BCompare.real
    ```

    3. new a file named BCompare
    3 . new a file named BCompare
    ```
    touch BCompare
    ```
    4. write following code into `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.
    5 . make `BCompare` executable.
    ```
    chmond +x BCompare
    ```
  3. @njleonzhang njleonzhang renamed this gist Aug 20, 2016. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion gistfile1.txt → Free_Beyond_Compare.md
    Original 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)
    [beyond-compare-4-for-mac-unlimited](http://tutandtips.blogspot.com/2015/10/beyond-compare-4-for-mac-unlimited.html)
  4. @njleonzhang njleonzhang revised this gist Aug 20, 2016. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion gistfile1.txt
    Original 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
    [](http://tutandtips.blogspot.com/2015/10/beyond-compare-4-for-mac-unlimited.html)
  5. @njleonzhang njleonzhang created this gist Aug 20, 2016.
    31 changes: 31 additions & 0 deletions gistfile1.txt
    Original 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