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!

Move first line of a file to the beginning of all lines of the file.

Status
Not open for further replies.

buckpasser

Technical User
Mar 10, 2005
24
US
I would like to move the first line of a file to the beginning of every line in the file.

============INPUT===================
Belmont,8-Oct,
1st,6.0F,-->More data fields
1st,6.0F,-->More data fields
1st,6.0F,-->More data fields
1st,6.0F,-->More data fields
1st,6.0F,-->More data fields
1st,6.0F,-->More data fields
2nd,8.5F,-->More data fields
2nd,8.5F,-->More data fields
2nd,8.5F,-->More data fields
2nd,8.5F,-->More data fields
2nd,8.5F,-->More data fields
3rd,8.0F,-->More data fields
3rd,8.0F,-->More data fields
3rd,8.0F,-->More data fields
3rd,8.0F,-->More data fields
3rd,8.0F,-->More data fields

============OUTPUT===================

Belmont,8-Oct,1st,6.0F,-->More data fields
Belmont,8-Oct,1st,6.0F,-->More data fields
Belmont,8-Oct,1st,6.0F,-->More data fields
Belmont,8-Oct,1st,6.0F,-->More data fields
Belmont,8-Oct,1st,6.0F,-->More data fields
Belmont,8-Oct,1st,6.0F,-->More data fields
Belmont,8-Oct,2nd,8.5F,-->More data fields
Belmont,8-Oct,2nd,8.5F,-->More data fields
Belmont,8-Oct,2nd,8.5F,-->More data fields
Belmont,8-Oct,2nd,8.5F,-->More data fields
Belmont,8-Oct,2nd,8.5F,-->More data fields
Belmont,8-Oct,3rd,8.0F,-->More data fields
Belmont,8-Oct,3rd,8.0F,-->More data fields
Belmont,8-Oct,3rd,8.0F,-->More data fields
Belmont,8-Oct,3rd,8.0F,-->More data fields
Belmont,8-Oct,3rd,8.0F,-->More data fields

 
How about this example
Code:
$ cat test1.txt
Belmont,8-Oct,
1st,6.0F,-->More data fields
1st,6.0F,-->More data fields
1st,6.0F,-->More data fields
$ awk 'NF==1 { a = $0 ; next } \
{ print a $0 }' test1.txt
Belmont,8-Oct, 1st,6.0F,-->More data fields
Belmont,8-Oct, 1st,6.0F,-->More data fields
Belmont,8-Oct, 1st,6.0F,-->More data fields

--
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top