Add characters at specific position in file


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Add characters at specific position in file
# 1  
Old 12-02-2009
Add characters at specific position in file

Hello

I want to add some value at the specific position.
My file has data like

Hello
Welcome to UNIX Forums
Need Assistance

I want to add some value at the end but at same character position for all lines.

I want my output file to have data like :

Here '_' represents blanks.

Hello_____________________Everyone

Welcome to UNIX Forums____Everyone

Need Assistance___________Everyone

The data to be appended at last is same.

I am using this command :
Code:
 
sed "s/$/'Everyone'/" myfile

However it is appending where my line is ending.i.e.

Hello'Everyone'
Welcome to UNIX Forums'Everyone'
Need Assistance'Everyone'

Any suggestions.[COLOR="#738fbf"]
# 2  
Old 12-02-2009
Something like this:

Code:
awk '{len=30-length;printf("%s%*s\n",$0,len,"Everyone")}' file

# 3  
Old 12-02-2009
You can use "printf" to format the input to the specified length. See the printf manual for complete syntax.
# 4  
Old 12-02-2009
Thanks for valuable reply...

I am using this command .

Code:
 
awk '{len=4000-length;printf("%s%*s\n",$0,len,$var1$var2)}' $FILE

However I am getting an error :

Code:
awk: Field is not correct .The input line number is 1.The file is /.../abc.txt . 
The Source line number is 1.

Please help me in correcting this error.

---------- Post updated at 04:56 PM ---------- Previous update was at 04:21 PM ----------

THANK YOU EVERY ONE !!!

UNIX FORUMS ROCKK !!!Smilie

I GOT THE SOLUTIONS.Smilie

I LEARNED THAT I NEED TO PUT MY VARIABLES IN "'" QUOTES INSIDE AWK...Smilie

CHEERS !!!Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Count specific character of a file in each line and delete this character in a specific position

I will appreciate if you help me here in this script in Solaris Enviroment. Scenario: i have 2 files : 1) /tmp/TRANSACTIONS_DAILY_20180730.txt: 201807300000000004 201807300000000005 201807300000000006 201807300000000007 201807300000000008 2)... (10 Replies)
Discussion started by: teokon90
10 Replies

2. Shell Programming and Scripting

Inserting value at a particular position without changing the position of other characters

Hi All, I wanted a sed/awk command to add a value/character on a particular position without disturbing the position of other characters. I have file a.txt OL 10031 Day Black Midi Good Value P01 P07 OL 10031 Day Black Short Good Value P01 P07 I want to get the output as... (2 Replies)
Discussion started by: rahulsk
2 Replies

3. Shell Programming and Scripting

Find and replace with 0 for characters in a specific position

Need command for position based replace: I need a command to replace with 0 for characters in the positions 11 to 20 to all the lines starts with 6 in a file. For example the file ABC.txt has: abcdefghijklmnopqrstuvwxyz 6abcdefghijklmnopqrstuvwxyz abcdefghijklmnopqrstuvwxyz... (4 Replies)
Discussion started by: thangabalu
4 Replies

4. Shell Programming and Scripting

Printing characters at specific position in line

Hi, I am trying to get an output like : +----------------------------------+ ----------- + + some variable substitution + some text + Is there a way I can specify in printf (in ksh) the particular position I want to print a character, and also repeat a character from... (1 Reply)
Discussion started by: neil.k
1 Replies

5. Shell Programming and Scripting

position specific replace in file

How to replace the position specific values in the file.. i searched a lot the forums but i couldn't able to do... i have file like below 576666666666666666666666666 7878 897987 121 0asdas Y12 5900fbb 777 09JJJ 78798347892374 234234234364 234232898 89HJHIHIGIUG989902743748327khjkhkjlh... (6 Replies)
Discussion started by: greenworld123
6 Replies

6. Shell Programming and Scripting

Awk command to replace specific position characters.

Hi, I have a fixed width file. The way this file works is say for example there are 30 columns in it each with different sizes say 10,5,2, etc... If data in a field is less than the field size the rest of it is loaded with spaces. I would like an awk command to that would replace I have... (8 Replies)
Discussion started by: pinnacle
8 Replies

7. Shell Programming and Scripting

AWK or SED to add string at specific position

Greetings. I don't have experience programing scripts. I need to insert a string in a specific position of another string on another file (last.cfg), for example: File last.cfg before using script: login_interval=1800 lcs.machinename=client04 File last.cfg after using script:... (4 Replies)
Discussion started by: vanesuke
4 Replies

8. Shell Programming and Scripting

Insert character in a specific position of a file

Hi, I need to add Pipe (|) at 5th and 18th position of all records a file. How can I do this? I tried to add it at 5th position using the below code. It didnt work. Please help!!! awk '{substr($0,5,1) ~ /|/}{print}' $input_file > $temp_file (1 Reply)
Discussion started by: gpaulose
1 Replies

9. Shell Programming and Scripting

Deleting Characters at specific position in a line if the line is certain length

I've got a file that would have lines similar to: 12345678 x.00 xx.00 x.00 xxx.00 xx.00 xx.00 xx.00 23456781 x.00 xx.00 xx.00 xx.00 xx.00 x.00 xxx.00 xx.00 xx.00 xx.00 34567812 x.00 xx.00 x.00 xxx.00 xx.00 xx.00 xx.00 45678123 x.00 xx.00 xx.00 xx.00 xx.00 x.00 xxx.00 xx.00 xx.00 xx.00 xx.00... (10 Replies)
Discussion started by: Cailet
10 Replies

10. Shell Programming and Scripting

How to add character in specific position of a string?

Hi All, I would like to use sed to add "-" between the following string: Value: 20060830 Result: 2006-08-30 Pls advice. Thx a lot Victor (5 Replies)
Discussion started by: victorlung
5 Replies
Login or Register to Ask a Question