Wednesday, 11 May 2011

paste - A command to combine columns of two different files.

hi,

Today i learnt a command called 'paste'. this command will be very useful.this command is used to combine columns of two different files.

Eg:

(word.txt)

hello

how's

where's

(word1.txt)

dude

life!!!

everyone????

$ paste word.txt word1.txt


o/p:

hello      dude.

how's     life!!!

where's  everyone???

No comments:

Post a Comment