Unix and Linux Discussions Tagged with sed |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
2 |
13,629 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
70,228 |
Shell Programming and Scripting |
|
|
|
2 |
40,402 |
Shell Programming and Scripting |
|
|
|
2 |
66,368 |
Shell Programming and Scripting |
|
|
|
3 |
6,521 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
7,425 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
5,248 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
9,155 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,115 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
5,903 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
8,638 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
9,709 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
8,174 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
18,718 |
Shell Programming and Scripting |
|
|
|
6 |
17,413 |
UNIX for Advanced & Expert Users |
|
|
|
9 |
26,819 |
Shell Programming and Scripting |
|
|
|
6 |
15,469 |
Shell Programming and Scripting |
|
|
|
3 |
5,618 |
UNIX for Beginners Questions & Answers |
|
|
|
11 |
27,791 |
Shell Programming and Scripting |
|
|
|
3 |
8,738 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
8,804 |
Shell Programming and Scripting |
|
|
|
7 |
11,489 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
9,963 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
5,172 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,489 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
5,502 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
6,484 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
7,131 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
6,487 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
8,101 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
5,933 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
9,651 |
Shell Programming and Scripting |
|
|
|
1 |
3,480 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
3,517 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
12,315 |
UNIX for Beginners Questions & Answers |
|
|
|
16 |
16,337 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
2,660 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
21,573 |
Shell Programming and Scripting |
|
|
|
4 |
4,570 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
9,116 |
UNIX for Beginners Questions & Answers |
SHTOOL-SUBST.TMP(1) GNU Portable Shell Tool SHTOOL-SUBST.TMP(1)
NAME
shtool-subst - GNU shtool sed(1) substitution operations
SYNOPSIS
shtool subst [-v|--verbose] [-t|--trace] [-n|--nop] [-w|--warning] [-q|--quiet] [-s|--stealth] [-i|--interactive] [-b|--backup ext]
[-e|--exec cmd] [-f|--file cmd-file] [file] [file ...]
DESCRIPTION
This command applies one or more sed(1) substitution operations to stdin or any number of files.
OPTIONS
The following command line options are available.
-v, --verbose
Display some processing information.
-t, --trace
Enable the output of the essential shell commands which are executed.
-n, --nop
No operation mode. Actual execution of the essential shell commands which would be executed is suppressed.
-w, --warning
Show warning on substitution operation resulting in no content change on every file. The default is to show a warning on substitution
operations resulted in no content change on all files.
-q, --quiet
Suppress warning on substitution operation resulting in no content change.
-s, --stealth
Stealth operation. Preserve timestamp on file.
-i, --interactive
Enter interactive mode where the user has to approve each operation.
-b, --backup ext
Preserve backup of original file using file name extension ext. Default is to overwrite the original file.
-e, --exec cmd
Specify sed(1) command directly.
-f, --file cmd-file
Read sed(1) command from file.
EXAMPLE
# shell script
shtool subst -i -e 's;(c) ([0-9]*)-2000;(c) 1-2001;' *.[ch]
# RPM spec-file
%install
shtool subst -v -n
-e 's;^(prefix=).*;1 $RPM_BUILD_ROOT%{_prefix};g'
-e 's;^(sysconfdir=).*;1 $RPM_BUILD_ROOT%{_prefix}/etc;g'
`find . -name Makefile -print`
make install
HISTORY
The GNU shtool subst command was originally written by Ralf S. Engelschall <rse@engelschall.com> in 2001 for GNU shtool. It was prompted
by the need to have a uniform and convenient patching frontend to sed(1) operations in the OpenPKG package specifications.
SEE ALSO
shtool(1), sed(1).
18-Jul-2008 shtool 2.0.8 SHTOOL-SUBST.TMP(1)