.\" @(#)u4 6.1 (Berkeley) 06/02/86 .\" .SH IV. PROGRAMMING .PP There will be no attempt made to teach any of the programming languages available but a few words of advice are in order. One of the reasons why the .UC UNIX system is a productive programming environment is that there is already a rich set of tools available, and facilities like pipes, I/O redirection, and the capabilities of the shell often make it possible to do a job by pasting together programs that already exist instead of writing from scratch. .SH The Shell .PP The pipe mechanism lets you fabricate quite complicated operations out of spare parts that already exist. For example, the first draft of the .UL spell program was (roughly) .P1 .ta .6i 1.2i cat ... \f2collect the files\f3 | tr ... \f2put each word on a new line\f3 | tr ... \f2delete punctuation, etc.\f3 | sort \f2into dictionary order\f3 | uniq \f2discard duplicates\f3 | comm \f2print words in text\f3 \f2 but not in dictionary\f3 .P2 More pieces have been added subsequently, but this goes a long way for such a small effort. .PP The editor can be made to do things that would normally require special programs on other systems. For example, to list the first and last lines of each of a set of files, such as a book, you could laboriously type .P1 ed e chap1.1 1p $p e chap1.2 1p $p .ft R etc. .P2 But you can do the job much more easily. One way is to type .P1 ls chap* >temp .P2 to get the list of filenames into a file. Then edit this file to make the necessary series of editing commands (using the global commands of .UL ed ), and write it into .UL script . Now the command .P1 ed