Mac下使用Wine安装文件内容搜索工具Search and Replace

下载:

(链接: https://pan.baidu.com/s/1mij7WX6 密码: xsu8)

安装:

1、安装Wine

参考:http://www.cnblogs.com/EasonJim/p/8016167.html

2、安装Search and Replace

cp -r SR32 ~/.wine/drive_c/Program Files/

3、设置桌面图标

vim src.command
chomd u+x src.command
#!/bin/bash
test "$?BASH_VERSION" = "0" || eval 'setenv() { export "$1=$2"; }';
  setenv PATH "/Applications/Wine Stable.app/Contents/Resources/start/bin:/Applications/Wine Stable.app/Contents/Resources/wine/bin:$PATH";
nohup wine ~/.wine/drive_c/Program Files (x86)/SR32/SR32.exe >/dev/null 2>&1 &
原文地址:https://www.cnblogs.com/EasonJim/p/8017224.html