rsub
— substitute
lines or block of text
rsub |
[-A ] -r
line_regex -l
line_text target |
rsub |
target <
block_content |
rsub
is shipped to remote machines by
rset(1)
to provide a standard method of modifying configuration parameters within a
file. Two modes of operation are supported: line substitution and block
replacement.
Single line replacements are defined by the flags
-r
and -l
, while the content
for a text block is provided on STDIN.
The arguments for line substitution are as follows:
-A
- Append line if the pattern is not found.
-r
- A regular expression matching the line to replace.
-l
- The replacement text for a matching line. Newlines are not permitted as
part of the replacement string.
The rsub
utility exits with one of the
following values:
0
- Target file was updated
1
- No changes were made, or an error occurred
2
- Incorrect parameters
3
- File not found
Ensure a single configuration parameter is set
$SD/rsub -r '^AllowTcpForwarding .+' -l 'AllowTcpForwarding yes' \
/etc/ssh/sshd_config
Update a managed block of text
$SD/rsub /etc/fstab <<-CONF
/dev/ada0p1 /vm ufs rw 0 0
CONF