Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Change a file to another diferent file 1

Status
Not open for further replies.

Yarka

Technical User
Jan 14, 2007
192
ES
Hi,

I have a big file as:

aaa 001 123
bbb 003 300
ccc 005 5000
ddd 022 11
...

I need have an output as:

myclass{
aaa numoutput
data 123
prio 0
}

myclass{
bbb numoutput
data 300
prio 0
}

....

i.e, for each line of the input file: (the first column is with numoutput and third column is with data.

How can I do this?

Thanks.
 
Something like this ?
awk '{
print "myclass{\n"$1"\tnumoutput\ndata\t"$3"\nprio\t0\n}"
}' /path/to/input > output

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top