I have two files: one is like

preface
Introduction
chapter 1

the other is like

1
2
3

I was wondering how to column-wise combine the two files into one:

preface 1
Introduction 2
chapter 1 3

by using some utilities, such as awk, sed, available in Ubuntu?

Thanks and regards!

link|improve this question

56% accept rate
For such file manipulation I would look for the join command. It requires a common field though, but you could add one like line number, no ? – Julien Jul 7 '11 at 14:08
@Julien: How do you do with join? – Tim Jul 7 '11 at 14:36
feedback

1 Answer

up vote 4 down vote accepted
paste fileone filetwo

Use -d to specify delimiter.

link|improve this answer
Thanks! I just found that pr -t -m firstfile secondfile can also do the similar job. Are there differences between the two methods? – Tim Jul 7 '11 at 18:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.