On Wed, 2011-11-16 at 17:15 +0000, Wolodja Wentland wrote: > On Wed, Nov 16, 2011 at 16:58 +0000, Joao Ferreira Gmail wrote: > > Hi all, > > > > a crazy ideia just crossed my mind ? > > > > Is there a command that allows me to "glue" to text files together line > > by line ? more or like the inverse operation of 'cut' ... a vertical > > Something like "paste" ?
cool :) nice. thx Joao > > babilen@asasello: ~ $ cat a > 1 > 2 > 3 > babilen@asasello: ~ $ cat b > a > b > c > babilen@asasello: ~ $ paste -d '' a b > 1a > 2b > 3c -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected] Archive: http://lists.debian.org/[email protected]

