Sponsored Content
Full Discussion: sed substitution
Top Forums UNIX for Dummies Questions & Answers sed substitution Post 23335 by jo_aze on Friday 21st of June 2002 06:46:51 AM
Old 06-21-2002
sed substitution

Hi,

I have a set of files containing strings like I.TEST1_TEST2 or B.ESSA_ESSB for example.

Does somebody know how to substitute these strings whith the same name and an extension "_V1" (ie. I.TEST1_TEST2_V1) using sed command or else ?
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Substitution using sed

I know we can substitute a string using sed but how? For example: sed 's/(old variable)/(new variable)/ details.dat Am I suppose to put $old variable or whatever? Because I tried many times, it didnt work by putting $old variable. Am I suppose to enclose it with "" or ''? Please help (3 Replies)
Discussion started by: Ohji
3 Replies

2. Shell Programming and Scripting

Substitution using SED

Hi , I am stuck up in the below scenario:- I need to read a file name (eg A.txt) name frm another file (eg B.txt) and then I need to search for a particular expression in A.txt and substitute it with another expression. How can I use SED inside SHELL Scripting and command prompt as... (2 Replies)
Discussion started by: shubhranshu
2 Replies

3. Shell Programming and Scripting

SED Substitution

Hi , I am stuck up in the below scenario:- I need to read a file name (eg A.txt) name frm another file (eg B.txt) and then I need to search for a particular expression in A.txt and substitute it with another expression. How can I use SED inside SHELL Scripting and command prompt as well to... (1 Reply)
Discussion started by: shubhranshu
1 Replies

4. Shell Programming and Scripting

SED Substitution

Hi guys, Can u please help me to replace (-) with (/) in a file containing no of records using "sed " command in unix. thanks in advance. subhendu (5 Replies)
Discussion started by: subhendu81
5 Replies

5. Shell Programming and Scripting

sed substitution

Hi I am trying to do a text insertion in a text file at a particular line number in a shell script. However its not working. sed '122i\ > for j in \`echo $MyList\` ; do perl -pi -e\'s#01\/01\/2009#01\/01\/2011#\' $j ; done' $HOME/MyScript.ksh The Actual line to be inserted at line 122... (5 Replies)
Discussion started by: som.nitk
5 Replies

6. UNIX for Dummies Questions & Answers

Help with sed substitution

I'm a noob to unix, and I have a line of data like the following: title=Boston|tcolor=green|desc=Large city in New England|url=www.boston.com Is there a way to change a field value with sed substitution? (i.e. change tcolor=green to tcolor=blue) I figured out: sed... (19 Replies)
Discussion started by: stabby
19 Replies

7. Shell Programming and Scripting

Substitution with sed

I have a file with some numbers having single quotes around them which I want to remove. i.e. '923930' -> 23930 If it can be done without using sed thats fine. I have tried with sed but can't think how to replace this pattern on only the numbers (13 Replies)
Discussion started by: user_invalid
13 Replies

8. Shell Programming and Scripting

sed substitution

Hello, I have two files. File1 is normal txt file and File2 contains list of line numbers. e.g. File2: 3 6 9 ..... I need to replace a character in File1 in lines (taken from File2). For that I am using a "for" loop: for i in $(cat File2) do sed "$i s/Y/N/" File1 done but my... (3 Replies)
Discussion started by: shekhar2010us
3 Replies

9. UNIX for Dummies Questions & Answers

sed substitution

How can you use sed with a line of code that reads: 67899:Bill:Williams:Maple Dr.:45908600 Let us say we want to replace Maple Dr. with Oak St. (1 Reply)
Discussion started by: yonkers062986
1 Replies

10. Shell Programming and Scripting

sed substitution

Hi everyone, I need very simple sed command to change a parameter in a text file. I have a line in this text which is like set xx 0.5 A program reads this file and does some algebraic calculations. So to make a parameter scan I need to change the value of xx. I thought I can do... (7 Replies)
Discussion started by: hayreter
7 Replies
xstr(1) 						      General Commands Manual							   xstr(1)

Name
       xstr - extract strings from C program

Syntax
       xstr [-c] [-] [file]

Description
       The  command maintains a file strings into which strings in component parts of a large program are hashed.  These strings are replaced with
       references to this common area.	This serves to implement shared constant strings, most useful if they are also read-only.

       The command
       xstr -c name

       will extract the strings from the C source in name, replacing string references by expressions of the form (&xstr[number]) for some number.
       An  appropriate declaration of is prepended to the file.  The resulting C text is placed in the file x.c, to then be compiled.  The strings
       from this file are placed in the strings data base if they are not there already.  Repeated strings  and  strings  which  are  suffices	of
       existing strings do not cause changes to the data base.

       After all components of a large program have been compiled a file xs.c declaring the common space can be created by a command of the form
       xstr

       This xs.c file should then be compiled and loaded with the rest of the program.	If possible, the array can be made read-only (shared) sav-
       ing space and swap overhead.

       The command can also be used on a single file.  A command
       xstr name

       creates files x.c and xs.c as before, without using or affecting any strings file in the same directory.

       It may be useful to run after the C preprocessor if any macro definitions yield strings or if there  is	conditional  code  which  contains
       strings	which may not, in fact, be needed.  The command reads from its standard input when the argument `-' is given.  An appropriate com-
       mand sequence for running after the C preprocessor is:
       cc -E name.c | xstr -c -
       cc -c x.c
       mv x.o name.o

       The command does not touch the file strings unless new items are added, thus can avoid remaking xs.o unless truly necessary.

Options
       -  Reads stdin.

       -c Extracts strings from specified C source (next argument).

Restrictions
       If a string is a suffix of another string in the data base, but the shorter string is seen first by both strings will be placed in the data
       base, when just placing the longer one there will do.

Files
       strings	      Data base of strings
       x.c	 Massaged C source
       xs.c	 C source for definition of array `xstr'
       /tmp/xs*  Temp file when `xstr name' doesn't touch strings

See Also
       mkstr(1)

																	   xstr(1)
All times are GMT -4. The time now is 08:33 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy