You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Mac OS X, the default sed is from the FreeBSD distribution. To download the GNU sed version, use [Brew](http://brew.sh)
82
82
83
-
`brew install gnu-sed --with-default-names` will replace the existing sed command with the GNU version. Without the `--with-default-names` option, the command will be downloaded as `gsed`.
83
+
```
84
+
$ brew install gnu-sed --with-default-names
85
+
```
86
+
87
+
will replace the existing sed command with the GNU version. Without the `--with-default-names` option, the command will be downloaded as `gsed`.
84
88
85
89
Search functionality is implemented using **pcregrep** which is portable to many Linux distributions and OS X. If pcregrep is not available on the system, GNU grep is a backup (not required to use the hooks).
0 commit comments