ksh - adding a dynamic value to the front of a line


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting ksh - adding a dynamic value to the front of a line
# 8  
Old 01-08-2009
Hi,

Just one more query on this...

How can I get the name of the file, eg file.txt appended to the beginning of every line too? eg to get:

file.txt,HELLO,SIMPLE=HELLO
file.txt,HELLO,CONFIDENTIAL=false
file.txt,HELLO,SENDER=false

etc

thanks!
# 9  
Old 01-08-2009
Code:
awk -F= '$1 ~ /SIMPLE/ {a=$2; print FILENAME,a,$0; next} {print FILENAME,a,$0}' OFS=, file.txt
file.txt,HELLO,SIMPLE=HELLO
file.txt,HELLO,CONFIDENTIAL=false
file.txt,HELLO,SENDER=false
file.txt,HELLO,REQUIRED=true
file.txt,HELLO,FEEDBACK=false
file.txt,HELLO,UPDATE=false
file.txt,HELLO,REQUIRED=false
file.txt,HELLO,MAPPING=true
file.txt,HELLO2,SIMPLE=HELLO2
file.txt,HELLO2,CONFIDENTIAL=false
file.txt,HELLO2,SENDER=false
file.txt,HELLO2,REQUIRED=true
file.txt,HELLO2,FEEDBACK=false
file.txt,HELLO2,UPDATE=false
file.txt,HELLO2,REQUIRED=false

# 10  
Old 01-08-2009
fantastic.

thanks very much!

ocelot
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Adding a backslash in front of square brackets with sed

I'm trying to convert this line: to \ with sed. This is what I have so far: sed -e 's/\]*\)\]/\\\\\/' but this still gives me . Any suggestions? (15 Replies)
Discussion started by: lehaste
15 Replies

2. Shell Programming and Scripting

Script for adding a word in front of all line in a file

Hi I've one file full of paths of certain files and I want to add some extra file words in front of all the paths. for eg: i have a file name test.txt which show some details only.. 024_hd/044/0344eng.txt 035_bv/222/editor.jpg here I want to add /usr/people/indiana/ infront of all the... (4 Replies)
Discussion started by: ratheeshp
4 Replies

3. Shell Programming and Scripting

ksh: what does x in front of something mean?

hi, i have stuff like if ]; then what does the x mean? also, what does -z variable mean in an if statement> thanks (8 Replies)
Discussion started by: JamesByars
8 Replies

4. Shell Programming and Scripting

How join line and add | in front

Hello, Did any one know how to use perl join line and add | in front Input--> timestamp=2009-11-10-04.55.20.829347; a; b; c; ddaa; timestamp=2009-11-10-04.55.20.829347; aa; bb; cc; Output--> ... (2 Replies)
Discussion started by: happyday
2 Replies

5. Shell Programming and Scripting

Want to add a word in front a of each line of a file

Hi, Can anybody help me how to add a word in front of a line in a file.Actually it is bit tricky to add a word. i will give a sample for this: Input : 1110001 ABC DEF 1110001 EFG HIJ 1110001 KLM NOP 1110002 QRS RST 1110002 UVW XYZ Output: %HD% 1110001 ABC DEF %DT% 1110001 EFG HIJ... (4 Replies)
Discussion started by: apjneeraj
4 Replies

6. Shell Programming and Scripting

adding a character in front of a line

Hi everyon, I am trying to search for a pattern in a file and add "//" to the begining of the file. lets say i want to comment out a line from my codes. the line that should be commented out contains the word "reset". i need to search for the word "reset" and comment out that specific line. is... (5 Replies)
Discussion started by: ROOZ
5 Replies

7. Shell Programming and Scripting

Adding a word in front of a word of each line.

Adding a word in front of a word of each line.In that line only one word will be there. pl help:( (4 Replies)
Discussion started by: Ramesh Vellanki
4 Replies

8. Shell Programming and Scripting

sh, ksh: command to remove front spaces from a string?

dear pro-coders, is there any command out there that takes out the front spaces from a string? sample strings: 4 members 5 members 3 members but it has to be like so: 4 members 5 members 3 members (3 Replies)
Discussion started by: pseudocoder
3 Replies

9. Shell Programming and Scripting

Dynamic SQl in KSH

My requirement is to create a KSH to generate the SQL select statement in oracle with all the columns and optional where condition if given the table name as input to the program Have any of you worked with a similar requirement? Can you give me some inputs? Regards, Kousikan (2 Replies)
Discussion started by: kousikan
2 Replies

10. Shell Programming and Scripting

creating a dynamic array in ksh

Hi, Is it possible to create a dynamic array in shell script. I am trying to get the list of logfiles that created that day and put it in a dynamic array. I am not sure about it. help me New to scripting Gundu (3 Replies)
Discussion started by: gundu
3 Replies
Login or Register to Ask a Question