Scroll to navigation

RPL(1) User Commands RPL(1)

NAME

rpl - replace strings in files

DESCRIPTION

usage: rpl [-h] [--version] [--encoding ENCODING] [-E] [-i] [-m] [-w] [-b] [-q] [-v] [-s] [-e] [-F] [--files] [-x GLOB] [-R] [-p] [-f] [-d] OLD-TEXT NEW-TEXT [FILE ...]

Search and replace text in files.

Text matching the pattern OLD-TEXT is replaced by NEW-TEXT in each FILE. The pattern may match multiple lines.

Filenames may include glob patterns (these must be quoted to avoid being interpreted by the shell), and in particular may use ‘**’ to match all files and zero or more directories and subdirectories. Tilde and environment variable expansion is also performed.

positional arguments:

OLD-TEXT NEW-TEXT FILE `-' or no FILE argument means standard input

options:

show this help message and exit
show program's version number and exit
specify character set encoding
use extended regular expression module `regex'
search case-insensitively
ignore case when searching, but try to match case of replacement to case of original, either capitalized, all upper-case, or mixed
whole words (OLD-TEXT matches on word boundaries only)
rename original FILE to FILE~ before replacing
quiet mode
verbose mode
simulation mode
expand escapes in OLD-TEXT and NEW-TEXT [deprecated]
treat OLD-TEXT and NEW-TEXT as fixed strings, not regular expressions
OLD-TEXT and NEW-TEXT are file names to read patterns from
modify only files matching the given glob (may be given more than once)
search recursively
prompt before modifying each file
ignore errors when trying to preserve attributes
keep the modification times on modified files

EXAMPLES

Replace all occurrences of the word ‘F’ with ‘A’ in all files with extension .txt under the grades/ directory:

rpl -w F A 'grades/**/*.txt'

AUTHOR

Written by Göran Weinholt and Reuben Thomas.

COPYRIGHT

Copyright © 2018-2022 Reuben Thomas <rrt@sc3d.org>
Copyright © 2017 Jochen Kupperschmidt <homework@nwsnet.de>
Copyright © 2016 Kevin Coyner <kcoyner@debian.org>
Copyright © 2004-2005 Göran Weinholt <weinholt@debian.org>
Copyright © 2004 Christian Häggström <chm@c00.info>

rpl comes with ABSOLUTELY NO WARRANTY. You may redistribute copies of rpl under the terms of the GNU General Public License. For more information about these matters, see the file named COPYING.

This program was written for Debian as a free replacement for the non-free rpl program by Joe Laffey.

SEE ALSO

find(1), sed(1).

May 2022 rpl 1.14