Unix and Linux Discussions Tagged with replace |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
7 |
12,850 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
73,671 |
Shell Programming and Scripting |
|
|
|
9 |
11,686 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
15,897 |
Programming |
|
|
|
7 |
12,144 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
8,174 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
11,708 |
AIX |
|
|
|
3 |
18,585 |
Shell Programming and Scripting |
|
|
|
1 |
2,563 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
4,137 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
4,754 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
6,484 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,023 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
10,382 |
Shell Programming and Scripting |
|
|
|
3 |
9,651 |
Shell Programming and Scripting |
|
|
|
15 |
12,315 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,386 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
5,324 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
10,832 |
Shell Programming and Scripting |
|
|
|
7 |
9,116 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
4,004 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
7,754 |
Shell Programming and Scripting |
|
|
|
3 |
12,550 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
8,129 |
Shell Programming and Scripting |
|
|
|
5 |
3,322 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
3,858 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
4,016 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,215 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,412 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,356 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
5,248 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
4,370 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
4,483 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
5,636 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,478 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
3,848 |
Shell Programming and Scripting |
|
|
|
3 |
5,313 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
2,441 |
Shell Programming and Scripting |
|
|
|
8 |
3,949 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,387 |
UNIX for Beginners Questions & Answers |
REPLACE(1) General Commands Manual REPLACE(1)
NAME
replace - A utility program that is used by msql2mysql, but that has more general applicability as well. replace changes strings in place
in files or on the standard input. Uses a finite state machine to match longer strings first. Can be used to swap strings.
USAGE
replace [-?svIV] from to from to ... -- [files]
or
replace [-?svIV] from to from to ... < fromfile > tofile
SYNOPSIS
replace [-?|-I] [-s] [-v]
DESCRIPTION
replace
-?|-I info
-s silent
-v verbose
EXTRA INFO
Special characters in from string:
^ Match start of line.
$ Match end of line.
Match space-character, start of line or end of line. For a end the next replace starts locking at the end space-character. A
alone in a string matches only a space-character.
EXAMPLE
this command swaps a and b in the given files:
shell> replace a b b a -- file1 file2 ...
SEE ALSO
isamchk (1), isamlog (1), mysqlaccess (1), mysqladmin (1), mysqlbug (1), mysqld (1), mysqldump (1), mysqlshow (1), msql2mysql (1), perror
(1), replace (1), safe_mysqld (1), which1 (1), zap (1),
AUTHOR
Ver 1.0, distribution 3.23.29a Michael (Monty) Widenius (monty@tcx.se), TCX Datakonsult AB (http://www.tcx.se). This software comes with
no warranty. Manual page by L. (Kill-9) Pedersen (kill-9@kill-9.dk), Mercurmedia Data Model Architect / system developer (http://www.mer-
curmedia.com)
20 December 2000 REPLACE(1)