mac系统安装GNU-sed

发布时间 2023-06-09 11:35:24作者: Topic

经过网上查资料,发现 由于 mac 系统与 linux 系统的差异,mac自带的sed命令,因为其是基于bsd,所以与常用的gnu不一样,安装gnu-sed 可正常使用:
1.brew install gnu-sed
//注意,命令行之行此句时,要在用户权限下,不要在root下,因为在root下,会提示不安全,这里主要用到homebrew工具
2.vi ~/.bash_profile
export PATH=“/usr/local/opt/gnu-sed/libexec/gnubin:$PATH”
3.source ~/.bash_profile 或者新开窗口,让设置生效。