20 lines
		
	
	
		
			747 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			747 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#! /bin/sh
 | 
						|
###############################################################################
 | 
						|
#  The BYTE UNIX Benchmarks - Release 3
 | 
						|
#          Module: tst.sh   SID: 3.4 5/15/91 19:30:24
 | 
						|
#          
 | 
						|
###############################################################################
 | 
						|
# Bug reports, patches, comments, suggestions should be sent to:
 | 
						|
#
 | 
						|
#	Ben Smith or Rick Grehan at BYTE Magazine
 | 
						|
#	ben@bytepb.UUCP    rick_g@bytepb.UUCP
 | 
						|
#
 | 
						|
###############################################################################
 | 
						|
#  Modification Log:
 | 
						|
#
 | 
						|
###############################################################################
 | 
						|
ID="@(#)tst.sh:3.4 -- 5/15/91 19:30:24";
 | 
						|
sort >sort.$$ <sort.src
 | 
						|
grep the sort.$$ | tee grep.$$ | wc > wc.$$
 | 
						|
rm sort.$$ grep.$$ wc.$$
 |