Bsd sed: Difference between revisions

From wikinotes
No edit summary
Line 2: Line 2:
See also [[gnu sed]].
See also [[gnu sed]].


For overview see [[gnu sed]].
= Documentation =
<blockquote>
{| class="wikitable"
|-
| <code>man sed</code> || https://www.freebsd.org/cgi/man.cgi?query=sed&apropos=0&sektion=0&manpath=FreeBSD+13.0-RELEASE+and+Ports&arch=default&format=html
|-
|}
</blockquote><!-- Documentation -->
 
= Overview =
<blockquote>
See [[gnu sed]].
</blockquote><!-- Overview -->


= Differences from GNU =
= Differences from GNU =

Revision as of 14:05, 16 October 2021

Sed allows you to search/replace within lines/files.
See also gnu sed.

Documentation

man sed https://www.freebsd.org/cgi/man.cgi?query=sed&apropos=0&sektion=0&manpath=FreeBSD+13.0-RELEASE+and+Ports&arch=default&format=html

Overview

See gnu sed.

Differences from GNU

# BSD replace file contents
sed -i ".bak" "s_aaa_bbb_g" /path/to/file