Mac下Cornerstone添加外部对比工具Beyond Compare
Beyond Compare 安装命令行工具
点击 Beyond Compare-》安装命令行工具
创建shell脚本
vim bc.sh
内容如下:
#!/bin/bash
original_path="$1"
modified_path="$3"
/usr/local/bin/bcompare"$original_path" "$modified_path"
授权可执行 chmod +x bc.sh
Cornerstone 添加脚本
prefrences->general->external compare tool->open script foder
将bc.sh文件移动到此目录