A copy from UNIX Tutorial for Beginners with modified paths
Please use this terminal emulator when doing the exercises!

Answer 3.4

3.4 Using Pipes

Exercise 3b

Using pipes, display all lines of list1 and list2 containing the letter 'p', and sort the result.

 

Answer

% cat list1 list2 | grep p | sort

 

 

 

 

 

 

M.Stonebank@ee.surrey.ac.uk, © November, 2002