"No Software Patents!" -- Allowing patents over software ideas will 
seriously affect the  Creativity,  Productivity and  Freedom of all.
Link: http://www.nosoftwarepatents.com/

One Day One GNU/Linux Command
=============================

paste - Merge lines of files.

Summary :

Paste write the lines from files in parallel and sequential manner in
the screen. By default, Lines will separated by a TAB character.

Examples :

$ paste f1 f2 f3 -- Contents of the f1,f2 & f3 will be pasted in 
                    parallel and lines are separated by TABs.

$ paste -d'#' f1 f2 f3 -- Same as above. But # is the separator.

$ paste -d'@#' f1 f2 f3 -- Same as above. But the separator for f1 & 
                           f2 is @ and for f2 & f3 is #.

$ paste -s f1 f2 -- Paste one file at a time instead of in parallel 
                    (as in above commands)

$ paste num word > myfile -- Paste the content of num & word and write 
                             the output into myfile.

Read : man paste

HTH :)
--
Bharathi S

_______________________________________________
To unsubscribe, email [EMAIL PROTECTED] with 
"unsubscribe <password> <address>"
in the subject or body of the message.  
http://www.ae.iitm.ac.in/mailman/listinfo/ilugc

Reply via email to