Sponsored Content
Top Forums Shell Programming and Scripting How to append a string to a specific location in a line Post 302372710 by Scrutinizer on Wednesday 18th of November 2009 02:28:36 PM
Old 11-18-2009
Code:
sed '/OPTIONALLY E/s/,/ XXX,/' infile

 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

using sed to replace a specific string on a specific line number using variables

using sed to replace a specific string on a specific line number using variables this is where i am at grep -v WARNING output | grep -v spawn | grep -v Passphrase | grep -v Authentication | grep -v '/sbin/tfadmin netguard -C'| grep -v 'NETWORK>' >> output.clean grep -n Destination... (2 Replies)
Discussion started by: todd.cutting
2 Replies

2. Shell Programming and Scripting

how to Add word at specific location in line

eg . i have file x.txt contains : java coding , shell scriptting etc... now i want to add "is langauge" after word java. output should be java is langauge coding , shell scriptting etc... any idea how to use shell script to do it ? (10 Replies)
Discussion started by: crackthehit007
10 Replies

3. Shell Programming and Scripting

Finding a word at specific location in a string

Hi All , I have different strings (SQL queries infact) of different lengths such as: 1. "SELECT XYZ FROM ABC WHERE ABC.DEF='123' " 2. "DELETE FROM ABC WHERE ABC.DEF='567'" 3. "SELECT * FROM ABC" I need to find out the word coming after the... (1 Reply)
Discussion started by: swapnil.nawale
1 Replies

4. Shell Programming and Scripting

How to append a character to the last but one field on a specific line?

Hi Guys, I have a file like this: aaa b c d e f fsss g h i k l qqq r t h n I want: aaa b c d e f fsss g h i k l qqq r t h , n ggg p t e d u qqq i o s , k (2 Replies)
Discussion started by: npatwardhan
2 Replies

5. Shell Programming and Scripting

Copying x words from end of line to specific location in same line

Hello all i know it is pretty hard one but you will manage it all after noticing and calculating i find a rhythm for the file i want to edit to copy the last 12 characters in line but the problem is to add after first 25 characters in same line in other way too copy the last 12 characters... (10 Replies)
Discussion started by: princesasa
10 Replies

6. Shell Programming and Scripting

Find and replace a string a specific value in specific location in AIX

Hi, I have following samp.txt file in unix. samp.txt 01Roy2D3M000000 02Rad2D3M222222 . . . . 10Mik0A2M343443 Desired Output 01Roy2A3M000000 02Rad2A3M222222 . . (5 Replies)
Discussion started by: techmoris
5 Replies

7. UNIX for Dummies Questions & Answers

Append a string on the next line after a pattern string is found

Right now, my code is: s/Secondary Ins./Secondary Ins.\ 1/g It's adding a 1 as soon as it finds Secondary Ins. Primary Ins.: MEDICARE B DMERC Secondary Ins. 1: CONTINENTAL LIFE INS What I really want to achieve is having a 1 added on the next line that contain "Secondary Ins." It... (4 Replies)
Discussion started by: newbeee
4 Replies

8. Shell Programming and Scripting

sed to append on specific line in password file

I have the a group file and my ftp group line looks like this ... (3 Replies)
Discussion started by: slufoot80
3 Replies

9. Shell Programming and Scripting

Insert text line to specific location CSV

In Perl. ***edited question below*** Hey all, I am teaching myself some simple CSV file manipulation and have become a little stuck. Say I have the following layout in the CSV file: age,name,locationIs it possible to INSERT data into the CSV into the correct age order. For example, if I had... (1 Reply)
Discussion started by: whyte_rhyno
1 Replies

10. Shell Programming and Scripting

Insert character at specific location in a each line of the file

Hi All, I am trying to write a shell script where it should insert character 'I' in 180th position of each line(except first and last line) of the file. Below is the script for file in /home/test/bharat/*.RET do # Process file echo "File Name=" $file #l_fileName="${file##*/}" ... (19 Replies)
Discussion started by: bharath561989
19 Replies
DWARF_LINENO(3) 					   BSD Library Functions Manual 					   DWARF_LINENO(3)

NAME
dwarf_lineaddr, dwarf_linebeginstatement, dwarf_lineblock, dwarf_lineendsequence, dwarf_lineno, dwarf_lineoff, dwarf_linesrc, dwarf_line_srcfileno -- retrieve information associated with a DWARF line descriptor LIBRARY
DWARF Access Library (libdwarf, -ldwarf) SYNOPSIS
#include <libdwarf.h> int dwarf_lineaddr(Dwarf_Line ln, Dwarf_Addr *ret, Dwarf_Error *err); int dwarf_linebeginstatement(Dwarf_Line ln, Dwarf_Bool *ret, Dwarf_Error *err); int dwarf_lineblock(Dwarf_Line ln, Dwarf_Bool *ret, Dwarf_Error *err); int dwarf_lineendsequence(Dwarf_Line ln, Dwarf_Bool *ret, Dwarf_Error *err); int dwarf_lineno(Dwarf_Line ln, Dwarf_Unsigned *ret, Dwarf_Error *err); int dwarf_lineoff(Dwarf_Line ln, Dwarf_Signed *ret, Dwarf_Error *err); int dwarf_linesrc(Dwarf_Line ln, char **ret, Dwarf_Error *err); int dwarf_line_srcfileno(Dwarf_Line ln, Dwarf_Unsigned *ret, Dwarf_Error *err); DESCRIPTION
These functions retrieve specific line information associated with the line descriptor specified by argument ln, and stores it in the loca- tion pointed to by argument ret. If argument err is not NULL, it will be used to store error information in case of an error. Function dwarf_lineaddr() stores the program address corresponding to the source line specified in argument ln into the location pointed to by argument ret. Function dwarf_linebeginstatement() sets the location pointed to by argument ret to 1 if the source line specified by the line descriptor ln is the beginning of a statement, or to 0 otherwise. Function dwarf_lineblock() sets the location pointed to by argument ret to 1 if the source line specified by the line descriptor ln is the beginning of a basic block, or to 0 otherwise. Function dwarf_lineendsequence() sets the location pointed to by argument ret to 1 if the program address associated with the line descriptor ln is the address immediately following the end of a sequence of target machine instructions, or to 0 otherwise. Function dwarf_lineno() stores the line number of the source line associated with the line descriptor ln into the location pointed to by argument ret. Function dwarf_lineoff() stores the column number within a line associated with descriptor ln into the location pointed to by argument ret. The retrieved column numbers are 1-based, with the value -1 indicating that column number information was not available. Function dwarf_linesrc() stores a pointer to a NUL-terminated string containing the source file name associated with line descriptor ln into the location pointed to by argument ret. The full path of the source file is returned if possible. The memory used for the source file name string is managed by the DWARF(3) library and should not be directly freed by application code. Instead, portable code should use dwarf_dealloc(3) to indicate that the string should be freed. Function dwarf_line_srcfileno() stores the index of the source file associated with the line descriptor ln in the location pointed to by argument ret. The returned value is 1-based index into the array of source file names returned by dwarf_srcfiles(3). RETURN VALUES
On success, these functions returns DW_DLV_OK. In case of an error, they return DW_DLV_ERROR and set the argument err. ERRORS
These functions may fail with the following errors: [DW_DLE_ARGUMENT] Either of the arguments ln or ret was NULL. [DW_DLE_LINE_FILE_NUM_BAD] The source file name associated with the line descriptor ln could not be retrieved by function dwarf_linesrc(). SEE ALSO
dwarf(3), dwarf_dealloc(3), dwarf_srcfiles(3), dwarf_srclines(3) BSD
February 5, 2011 BSD
All times are GMT -4. The time now is 10:46 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy