mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 05:32:44 +00:00 
			
		
		
		
	
		
			
				
	
	
	
	
		
			246 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			246 B
		
	
	
	
	
	
	
	
Name
sort - sort lines
Synopsis
$ sort [INPUT]
Description
Sort each lines of INPUT (or standard input). A quick sort algorithm is used.
Examples
$ echo "Well\nHello\nFriends!" | sort
Friends!
Hello
Well
